• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.0.25b/source/tests/
1/* a trivial function used to test building shared libraries */
2
3int foo(void);
4
5int foo(void)
6{
7	return 1;
8}
9