Fix getsubopt declaration.
* libc/include/sys/unistd.h (suboptarg, getsubopt): Move... * libc/include/stdlib.h: ...here, to match POSIX for getsubopt.
This commit is contained in:
parent
59cb363a5f
commit
b2e79f9800
|
@ -1,19 +1,24 @@
|
||||||
|
2009-12-22 Eric Blake <ebb9@byu.net>
|
||||||
|
|
||||||
|
* libc/include/sys/unistd.h (suboptarg, getsubopt): Move...
|
||||||
|
* libc/include/stdlib.h: ...here, to match POSIX for getsubopt.
|
||||||
|
|
||||||
2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
|
2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* NEWS: Update with 1.18.0 info.
|
* NEWS: Update with 1.18.0 info.
|
||||||
* README: Ditto.
|
* README: Ditto.
|
||||||
* acinclude.m4: Change version number to 1.18.0.
|
* acinclude.m4: Change version number to 1.18.0.
|
||||||
* aclocal.m4: Regenerated.
|
* aclocal.m4: Regenerated.
|
||||||
* configure: Ditto.
|
* configure: Ditto.
|
||||||
* doc/aclocal.m4: Ditto.
|
* doc/aclocal.m4: Ditto.
|
||||||
* doc/configure: Ditto.
|
* doc/configure: Ditto.
|
||||||
* libc/*/aclocal.m4: Ditto.
|
* libc/*/aclocal.m4: Ditto.
|
||||||
* libc/*/configure: Ditto.
|
* libc/*/configure: Ditto.
|
||||||
* libc/libc.texinfo: Ditto.
|
* libc/libc.texinfo: Ditto.
|
||||||
* libm/*/aclocal.m4: Ditto.
|
* libm/*/aclocal.m4: Ditto.
|
||||||
* libm/*/configure: Ditto.
|
* libm/*/configure: Ditto.
|
||||||
* libm/libm.texinfo: Ditto.
|
* libm/libm.texinfo: Ditto.
|
||||||
* libc/sys/linux/shared.ld: Add VERS_1.18
|
* libc/sys/linux/shared.ld: Add VERS_1.18
|
||||||
|
|
||||||
2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
|
2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
|
@ -77,15 +82,15 @@
|
||||||
|
|
||||||
* libc/sys/rtems/machine/_types.h: New (Derived from
|
* libc/sys/rtems/machine/_types.h: New (Derived from
|
||||||
machine/_default_types.h).
|
machine/_default_types.h).
|
||||||
* libc/sys/rtems/crt0.c: Rework. Introduce macro RTEMS_STUB.
|
* libc/sys/rtems/crt0.c: Rework. Introduce macro RTEMS_STUB.
|
||||||
* libc/sys/rtems/sys/param.h:
|
* libc/sys/rtems/sys/param.h:
|
||||||
Update copyright notice from FreeBSD.
|
Update copyright notice from FreeBSD.
|
||||||
Remove HZ.
|
Remove HZ.
|
||||||
Add #include <sys/priority.h>
|
Add #include <sys/priority.h>
|
||||||
Remove priority handling (moved to sys/priority.h).
|
Remove priority handling (moved to sys/priority.h).
|
||||||
Remove CLBYTES (Unused, abandoned in BSD).
|
Remove CLBYTES (Unused, abandoned in BSD).
|
||||||
* libc/sys/rtems/sys/queue.h: Update copyright (from FreeBSD).
|
* libc/sys/rtems/sys/queue.h: Update copyright (from FreeBSD).
|
||||||
Remove CIRCLEQ_*.
|
Remove CIRCLEQ_*.
|
||||||
|
|
||||||
2009-12-15 Conny Marco Menebrocker <c-m-m@gmx.de>
|
2009-12-15 Conny Marco Menebrocker <c-m-m@gmx.de>
|
||||||
|
|
||||||
|
|
|
@ -83,6 +83,10 @@ char * _EXFUN(getenv,(const char *__string));
|
||||||
char * _EXFUN(_getenv_r,(struct _reent *, const char *__string));
|
char * _EXFUN(_getenv_r,(struct _reent *, const char *__string));
|
||||||
char * _EXFUN(_findenv,(_CONST char *, int *));
|
char * _EXFUN(_findenv,(_CONST char *, int *));
|
||||||
char * _EXFUN(_findenv_r,(struct _reent *, _CONST char *, int *));
|
char * _EXFUN(_findenv_r,(struct _reent *, _CONST char *, int *));
|
||||||
|
#ifndef __STRICT_ANSI__
|
||||||
|
extern char *suboptarg; /* getsubopt(3) external variable */
|
||||||
|
int _EXFUN(getsubopt,(char **, char * const *, char **));
|
||||||
|
#endif
|
||||||
long _EXFUN(labs,(long));
|
long _EXFUN(labs,(long));
|
||||||
ldiv_t _EXFUN(ldiv,(long __numer, long __denom));
|
ldiv_t _EXFUN(ldiv,(long __numer, long __denom));
|
||||||
_PTR _EXFUN_NOTHROW(malloc,(size_t __size));
|
_PTR _EXFUN_NOTHROW(malloc,(size_t __size));
|
||||||
|
|
|
@ -191,9 +191,6 @@ extern int optreset; /* getopt(3) external variable */
|
||||||
|
|
||||||
#ifndef _POSIX_SOURCE
|
#ifndef _POSIX_SOURCE
|
||||||
pid_t _EXFUN(vfork, (void ));
|
pid_t _EXFUN(vfork, (void ));
|
||||||
|
|
||||||
extern char *suboptarg; /* getsubopt(3) external variable */
|
|
||||||
int getsubopt(char **, char * const *, char **);
|
|
||||||
#endif /* _POSIX_SOURCE */
|
#endif /* _POSIX_SOURCE */
|
||||||
|
|
||||||
#ifdef _COMPILING_NEWLIB
|
#ifdef _COMPILING_NEWLIB
|
||||||
|
|
Loading…
Reference in New Issue