diff options
author | joeh <joeh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-03 20:40:56 +0000 |
---|---|---|
committer | joeh <joeh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-03 20:40:56 +0000 |
commit | 0253f8e11efe550a337f3ec2fec1e58dc12feae4 (patch) | |
tree | fee0b0940c1eadf5ab33555e14d01f67b381df06 /PACE | |
parent | dd9e7fff1230cd0a67c1a62c1fdd111bd23cecce (diff) | |
download | ATCD-0253f8e11efe550a337f3ec2fec1e58dc12feae4.tar.gz |
Tue Oct 3 15:37:35 2000 Joe Hoffert <joeh@cs.wustl.edu>
Diffstat (limited to 'PACE')
-rw-r--r-- | PACE/ChangeLog | 5 | ||||
-rw-r--r-- | PACE/pace/posix/stdio.inl | 17 |
2 files changed, 8 insertions, 14 deletions
diff --git a/PACE/ChangeLog b/PACE/ChangeLog index 2e4190d38ed..49ae2fffd9c 100644 --- a/PACE/ChangeLog +++ b/PACE/ChangeLog @@ -1,3 +1,8 @@ +Tue Oct 3 15:37:35 2000 Joe Hoffert <joeh@cs.wustl.edu> + + * pace/posix/stdio.inl: + Added vfprintf, vprintf, and vsprintf support + Tue Sep 26 15:19:20 2000 Joe Hoffert <joeh@cs.wustl.edu> * tests/Makefile: diff --git a/PACE/pace/posix/stdio.inl b/PACE/pace/posix/stdio.inl index 009b9c32a33..630d7c5e2bc 100644 --- a/PACE/pace/posix/stdio.inl +++ b/PACE/pace/posix/stdio.inl @@ -476,11 +476,7 @@ pace_vfprintf (PACE_FILE * stream, const char * format, va_list arg) { - /* return vfprintf (stream, format, arg); */ - PACE_UNUSED_ARG (stream); - PACE_UNUSED_ARG (format); - PACE_UNUSED_ARG (arg); - return -1; + return vfprintf (stream, format, arg); } #endif /* PACE_HAS_POSIX_NONUOF_FUNCS */ @@ -490,10 +486,7 @@ int pace_vprintf (const char * format, va_list arg) { - /* return vfprintf (format, arg); */ - PACE_UNUSED_ARG (format); - PACE_UNUSED_ARG (arg); - return -1; + return vprintf (format, arg); } #endif /* PACE_HAS_POSIX_NONUOF_FUNCS */ @@ -504,10 +497,6 @@ pace_vsprintf (char * s, const char * format, va_list arg) { - /* return vsprintf (s, format, arg);*/ - PACE_UNUSED_ARG (s); - PACE_UNUSED_ARG (format); - PACE_UNUSED_ARG (arg); - return -1; + return vsprintf (s, format, arg); } #endif /* PACE_HAS_POSIX_NONUOF_FUNCS */ |