* libc/include/stdlib.h (getprogname): Declare for Cygwin.

(setprogname): Ditto.
This commit is contained in:
Corinna Vinschen 2003-11-17 17:30:30 +00:00
parent 6e17cee57b
commit a2f1155cf2
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-11-17 Corinna Vinschen <corinna@vinschen.de>
* libc/include/stdlib.h (getprogname): Declare for Cygwin.
(setprogname): Ditto.
2003-11-10 Jeff Johnston <jjohnstn@redhat.com>
* libc/machine/powerpc/ufix64toa.c (_ufix64to_r): Fix shifts

View File

@ -66,6 +66,9 @@ _VOID _EXFUN(exit,(int __status) _ATTRIBUTE ((noreturn)));
_VOID _EXFUN(free,(_PTR));
char * _EXFUN(getenv,(const char *__string));
char * _EXFUN(_getenv_r,(struct _reent *, const char *__string));
#ifdef __CYGWIN__
const char *_EXFUN(getprogname,(void));
#endif
char * _EXFUN(_findenv,(_CONST char *, int *));
char * _EXFUN(_findenv_r,(struct _reent *, _CONST char *, int *));
long _EXFUN(labs,(long));
@ -90,6 +93,9 @@ char * _EXFUN(mktemp,(char *));
_VOID _EXFUN(qsort,(_PTR __base, size_t __nmemb, size_t __size, int(*_compar)(const _PTR, const _PTR)));
int _EXFUN(rand,(_VOID));
_PTR _EXFUN(realloc,(_PTR __r, size_t __size));
#ifdef __CYGWIN__
void _EXFUN(setprogname,(const char *));
#endif
_VOID _EXFUN(srand,(unsigned __seed));
double _EXFUN(strtod,(const char *__n, char **__end_PTR));
double _EXFUN(_strtod_r,(struct _reent *,const char *__n, char **__end_PTR));