diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2009-08-21 20:25:28 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2009-08-21 20:25:28 +0000 |
commit | c11ba63d52f86470878b8ab9c22bfc6676f1dd12 (patch) | |
tree | 65a668d161c5874cb4006459269576bd3daeeedb /newlib/libc/stdio | |
parent | a2c5f4b4e47813022a63a68dcbcdb3964d5839a9 (diff) | |
download | newlib-c11ba63d52f86470878b8ab9c22bfc6676f1dd12.zip newlib-c11ba63d52f86470878b8ab9c22bfc6676f1dd12.tar.gz newlib-c11ba63d52f86470878b8ab9c22bfc6676f1dd12.tar.bz2 |
2009-08-21 Craig Howland <howland@LGSInnovations.com>
* libm/common/s_remquo.c (remquo): Fix sign of quotient when |x|==|y|.
* libc/stdio/mktemp.c: Add #include <stdlib.h> for function prototypes.
Diffstat (limited to 'newlib/libc/stdio')
-rw-r--r-- | newlib/libc/stdio/mktemp.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/newlib/libc/stdio/mktemp.c b/newlib/libc/stdio/mktemp.c index 25e8a01..cfd74ad 100644 --- a/newlib/libc/stdio/mktemp.c +++ b/newlib/libc/stdio/mktemp.c @@ -55,22 +55,6 @@ ANSI_SYNOPSIS int *_mkstemp_r(struct _reent *<[reent]>, char *<[path]>); int *_mkstemps_r(struct _reent *<[reent]>, char *<[path]>, int <[len]>); -TRAD_SYNOPSIS - #include <stdlib.h> - char *mktemp(<[path]>) - char *<[path]>; - - int mkstemp(<[path]>) - char *<[path]>; - - char *_mktemp_r(<[reent]>, <[path]>) - struct _reent *<[reent]>; - char *<[path]>; - - int _mkstemp_r(<[reent]>, <[path]>) - struct _reent *<[reent]>; - char *<[path]>; - DESCRIPTION <<mktemp>>, <<mkstemp>>, and <<mkstemps>> attempt to generate a file name that is not yet in use for any existing file. <<mkstemp>> and <<mkstemps>> @@ -122,6 +106,7 @@ Supporting OS subroutines required: <<getpid>>, <<mkdir>>, <<open>>, <<stat>>. */ #include <_ansi.h> +#include <stdlib.h> #include <reent.h> #include <sys/types.h> #include <fcntl.h> |