[Libsysio-commit] HEAD: libsysio/src init.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2004-11-18 13:21:40
|
Update of /cvsroot/libsysio/libsysio/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31684 Modified Files: init.c Log Message: Let's go ahead and make asprintf and vasprintf static. They aren't used anywhere else. Index: init.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/init.c,v retrieving revision 1.17 retrieving revision 1.18 diff -u -w -b -B -p -r1.17 -r1.18 --- init.c 18 Nov 2004 13:00:45 -0000 1.17 +++ init.c 18 Nov 2004 13:21:21 -0000 1.18 @@ -159,7 +159,7 @@ _sysio_shutdown() /* * Print a string to allocated memory. */ -int +static int vasprintf(char **strp, const char *fmt, va_list ap) { size_t siz; @@ -187,7 +187,7 @@ vasprintf(char **strp, const char *fmt, return n; } -int +static int asprintf(char **strp, const char *fmt, ...) { va_list ap; |