[Libsysio-commit] namespace_assembly: libsysio/tests test_path.c
Brought to you by:
lward
|
From: Lee W. <lw...@us...> - 2004-02-09 13:18:27
|
Update of /cvsroot/libsysio/libsysio/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30756 Modified Files: Tag: namespace_assembly test_path.c Log Message: The _test_sysio_startup() routine returns an int and the compiler would like it declared as such. Fixed. Index: test_path.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/tests/test_path.c,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -u -w -b -B -p -r1.6.2.1 -r1.6.2.2 --- test_path.c 9 Feb 2004 13:11:19 -0000 1.6.2.1 +++ test_path.c 9 Feb 2004 13:15:13 -0000 1.6.2.2 @@ -79,7 +79,7 @@ main(int argc, char *const argv[]) int i; int err; int n; - extern _test_sysio_startup(void); + extern int _test_sysio_startup(void); /* * Parse command line arguments. |