2009-12-17 Jerker Back <jerker.back@gmail.com>
* libc/include/_ansi.h: Add new _EXFNPTR macro for using with function pointer arguments. * libc/iconv/lib/conv.h: Use _EXFNPTR rather than _EXPARM macro. * libc/iconv/lib/ucsconv.h: Ditto. * libc/include/stdlib.h: Use new _EXFNPTR macro for function pointers. * libc/include/sys/reent.h: Ditto. * libc/include/sys/unistd.h: Ditto. * libc/search/bsearch.c: Ditto. * libc/stdio/fseek.c: Ditto. * libc/stdio64/fseeko64.c: Ditto. * libc/stdlib/atexit.c: Ditto. * libc/stdlib/on_exit.c: Ditto.
This commit is contained in:
parent
6fe2eb4c80
commit
8b917fbcdd
@ -1,3 +1,18 @@
|
|||||||
|
2009-12-17 Jerker Back <jerker.back@gmail.com>
|
||||||
|
|
||||||
|
* libc/include/_ansi.h: Add new _EXFNPTR macro for using with
|
||||||
|
function pointer arguments.
|
||||||
|
* libc/iconv/lib/conv.h: Use _EXFNPTR rather than _EXPARM macro.
|
||||||
|
* libc/iconv/lib/ucsconv.h: Ditto.
|
||||||
|
* libc/include/stdlib.h: Use new _EXFNPTR macro for function pointers.
|
||||||
|
* libc/include/sys/reent.h: Ditto.
|
||||||
|
* libc/include/sys/unistd.h: Ditto.
|
||||||
|
* libc/search/bsearch.c: Ditto.
|
||||||
|
* libc/stdio/fseek.c: Ditto.
|
||||||
|
* libc/stdio64/fseeko64.c: Ditto.
|
||||||
|
* libc/stdlib/atexit.c: Ditto.
|
||||||
|
* libc/stdlib/on_exit.c: Ditto.
|
||||||
|
|
||||||
2009-12-17 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2009-12-17 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* libc/include/machine/ieeefp.h: Rework __IEEE_*_ENDIAN handling.
|
* libc/include/machine/ieeefp.h: Rework __IEEE_*_ENDIAN handling.
|
||||||
|
@ -63,7 +63,7 @@ typedef struct
|
|||||||
* Pointer to conversion-specific data if success. In case of error
|
* Pointer to conversion-specific data if success. In case of error
|
||||||
* returns NULL and sets current thread's/process's errno.
|
* returns NULL and sets current thread's/process's errno.
|
||||||
*/
|
*/
|
||||||
_VOID_PTR _EXPARM(open, (struct _reent *rptr,
|
_VOID_PTR _EXFNPTR(open, (struct _reent *rptr,
|
||||||
_CONST char *to,
|
_CONST char *to,
|
||||||
_CONST char *from));
|
_CONST char *from));
|
||||||
|
|
||||||
@ -81,7 +81,7 @@ typedef struct
|
|||||||
* When successful, returns (size_t)0. In case of error, sets current
|
* When successful, returns (size_t)0. In case of error, sets current
|
||||||
* thread's/process's errno and returns (size_t)-1 (same as iconv_open()).
|
* thread's/process's errno and returns (size_t)-1 (same as iconv_open()).
|
||||||
*/
|
*/
|
||||||
size_t _EXPARM(close, (struct _reent *rptr,
|
size_t _EXFNPTR(close, (struct _reent *rptr,
|
||||||
_VOID_PTR data));
|
_VOID_PTR data));
|
||||||
|
|
||||||
/* convert - perform encoding conversion.
|
/* convert - perform encoding conversion.
|
||||||
@ -114,7 +114,7 @@ typedef struct
|
|||||||
* Reversible conversions are not counted. In case of error, sets current
|
* Reversible conversions are not counted. In case of error, sets current
|
||||||
* thread's/process's errno and returns (size_t)-1 (same as iconv()).
|
* thread's/process's errno and returns (size_t)-1 (same as iconv()).
|
||||||
*/
|
*/
|
||||||
size_t _EXPARM(convert, (struct _reent *rptr,
|
size_t _EXFNPTR(convert, (struct _reent *rptr,
|
||||||
_VOID_PTR data,
|
_VOID_PTR data,
|
||||||
_CONST unsigned char **inbuf,
|
_CONST unsigned char **inbuf,
|
||||||
size_t *inbytesleft,
|
size_t *inbytesleft,
|
||||||
@ -135,7 +135,7 @@ typedef struct
|
|||||||
* If 'direction' is 0, "from" encoding is tested, else
|
* If 'direction' is 0, "from" encoding is tested, else
|
||||||
* "to" encoding is tested.
|
* "to" encoding is tested.
|
||||||
*/
|
*/
|
||||||
_VOID _EXPARM(get_state, (_VOID_PTR data,
|
_VOID _EXFNPTR(get_state, (_VOID_PTR data,
|
||||||
mbstate_t *state,
|
mbstate_t *state,
|
||||||
int direction));
|
int direction));
|
||||||
|
|
||||||
@ -154,7 +154,7 @@ typedef struct
|
|||||||
* "to" encoding is set.
|
* "to" encoding is set.
|
||||||
* Returns 0 if '*state' object has right format, -1 else.
|
* Returns 0 if '*state' object has right format, -1 else.
|
||||||
*/
|
*/
|
||||||
int _EXPARM(set_state, (_VOID_PTR data,
|
int _EXFNPTR(set_state, (_VOID_PTR data,
|
||||||
mbstate_t *state,
|
mbstate_t *state,
|
||||||
int direction));
|
int direction));
|
||||||
|
|
||||||
@ -170,7 +170,7 @@ typedef struct
|
|||||||
* If 'direction' is 0, "from" encoding is tested, else
|
* If 'direction' is 0, "from" encoding is tested, else
|
||||||
* "to" encoding is tested.
|
* "to" encoding is tested.
|
||||||
*/
|
*/
|
||||||
int _EXPARM(get_mb_cur_max, (_VOID_PTR data,
|
int _EXFNPTR(get_mb_cur_max, (_VOID_PTR data,
|
||||||
int direction));
|
int direction));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -185,7 +185,7 @@ typedef struct
|
|||||||
* If 'direction' is 0, "from" encoding is tested, else
|
* If 'direction' is 0, "from" encoding is tested, else
|
||||||
* "to" encoding is tested.
|
* "to" encoding is tested.
|
||||||
*/
|
*/
|
||||||
int _EXPARM(is_stateful, (_VOID_PTR data,
|
int _EXFNPTR(is_stateful, (_VOID_PTR data,
|
||||||
int direction));
|
int direction));
|
||||||
|
|
||||||
} iconv_conversion_handlers_t;
|
} iconv_conversion_handlers_t;
|
||||||
|
@ -68,7 +68,7 @@ typedef struct
|
|||||||
* Returns CES-specific data pointer if success. In case of error returns
|
* Returns CES-specific data pointer if success. In case of error returns
|
||||||
* NULL and sets current thread's/process's errno.
|
* NULL and sets current thread's/process's errno.
|
||||||
*/
|
*/
|
||||||
_VOID_PTR _EXPARM(init, (struct _reent *rptr,
|
_VOID_PTR _EXFNPTR(init, (struct _reent *rptr,
|
||||||
_CONST char *encoding));
|
_CONST char *encoding));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -84,7 +84,7 @@ typedef struct
|
|||||||
* Returns (size_t)0 if success. In case of error returns (size_t)-1 and
|
* Returns (size_t)0 if success. In case of error returns (size_t)-1 and
|
||||||
* sets current thread's/process's errno.
|
* sets current thread's/process's errno.
|
||||||
*/
|
*/
|
||||||
size_t _EXPARM(close, (struct _reent *rptr,
|
size_t _EXFNPTR(close, (struct _reent *rptr,
|
||||||
_VOID_PTR data));
|
_VOID_PTR data));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -96,7 +96,7 @@ typedef struct
|
|||||||
* DESCRIPTION:
|
* DESCRIPTION:
|
||||||
* Returns encoding's maximum character length.
|
* Returns encoding's maximum character length.
|
||||||
*/
|
*/
|
||||||
int _EXPARM(get_mb_cur_max, (_VOID_PTR data));
|
int _EXFNPTR(get_mb_cur_max, (_VOID_PTR data));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* get_state - get current shift state.
|
* get_state - get current shift state.
|
||||||
@ -108,7 +108,7 @@ typedef struct
|
|||||||
* DESCRIPTION:
|
* DESCRIPTION:
|
||||||
* Returns encoding's current shift sequence.
|
* Returns encoding's current shift sequence.
|
||||||
*/
|
*/
|
||||||
_VOID _EXPARM(get_state, (_VOID_PTR data,
|
_VOID _EXFNPTR(get_state, (_VOID_PTR data,
|
||||||
mbstate_t *state));
|
mbstate_t *state));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -123,7 +123,7 @@ typedef struct
|
|||||||
* object is zero-object - reset current shift state.
|
* object is zero-object - reset current shift state.
|
||||||
* Returns 0 if '*state' object has right format, -1 else.
|
* Returns 0 if '*state' object has right format, -1 else.
|
||||||
*/
|
*/
|
||||||
int _EXPARM(set_state, (_VOID_PTR data,
|
int _EXFNPTR(set_state, (_VOID_PTR data,
|
||||||
mbstate_t *state));
|
mbstate_t *state));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -135,7 +135,7 @@ typedef struct
|
|||||||
* DESCRIPTION:
|
* DESCRIPTION:
|
||||||
* Returns 0 if encoding is stateless, else returns 1.
|
* Returns 0 if encoding is stateless, else returns 1.
|
||||||
*/
|
*/
|
||||||
int _EXPARM(is_stateful, (_VOID_PTR data));
|
int _EXFNPTR(is_stateful, (_VOID_PTR data));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* convert_to_ucs - convert character to UCS.
|
* convert_to_ucs - convert character to UCS.
|
||||||
@ -155,7 +155,7 @@ typedef struct
|
|||||||
* returns ICONV_CES_INVALID_CHARACTER. If invalid or incomplete bytes
|
* returns ICONV_CES_INVALID_CHARACTER. If invalid or incomplete bytes
|
||||||
* sequence was met, returns ICONV_CES_BAD_SEQUENCE.
|
* sequence was met, returns ICONV_CES_BAD_SEQUENCE.
|
||||||
*/
|
*/
|
||||||
ucs4_t _EXPARM(convert_to_ucs, (_VOID_PTR data,
|
ucs4_t _EXFNPTR(convert_to_ucs, (_VOID_PTR data,
|
||||||
_CONST unsigned char **inbuf,
|
_CONST unsigned char **inbuf,
|
||||||
size_t *inbytesleft));
|
size_t *inbytesleft));
|
||||||
} iconv_to_ucs_ces_handlers_t;
|
} iconv_to_ucs_ces_handlers_t;
|
||||||
@ -172,26 +172,26 @@ typedef struct
|
|||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
/* Same as in iconv_to_ucs_ces_handlers_t */
|
/* Same as in iconv_to_ucs_ces_handlers_t */
|
||||||
_VOID_PTR _EXPARM(init, (struct _reent *rptr,
|
_VOID_PTR _EXFNPTR(init, (struct _reent *rptr,
|
||||||
_CONST char *encoding));
|
_CONST char *encoding));
|
||||||
|
|
||||||
/* Same as in iconv_to_ucs_ces_handlers_t */
|
/* Same as in iconv_to_ucs_ces_handlers_t */
|
||||||
size_t _EXPARM(close, (struct _reent *rptr,
|
size_t _EXFNPTR(close, (struct _reent *rptr,
|
||||||
_VOID_PTR data));
|
_VOID_PTR data));
|
||||||
|
|
||||||
/* Same as in iconv_to_ucs_ces_handlers_t */
|
/* Same as in iconv_to_ucs_ces_handlers_t */
|
||||||
int _EXPARM(get_mb_cur_max, (_VOID_PTR data));
|
int _EXFNPTR(get_mb_cur_max, (_VOID_PTR data));
|
||||||
|
|
||||||
/* Same as in iconv_to_ucs_ces_handlers_t */
|
/* Same as in iconv_to_ucs_ces_handlers_t */
|
||||||
_VOID _EXPARM(get_state, (_VOID_PTR data,
|
_VOID _EXFNPTR(get_state, (_VOID_PTR data,
|
||||||
mbstate_t *state));
|
mbstate_t *state));
|
||||||
|
|
||||||
/* Same as in iconv_to_ucs_ces_handlers_t */
|
/* Same as in iconv_to_ucs_ces_handlers_t */
|
||||||
int _EXPARM(set_state, (_VOID_PTR data,
|
int _EXFNPTR(set_state, (_VOID_PTR data,
|
||||||
mbstate_t *state));
|
mbstate_t *state));
|
||||||
|
|
||||||
/* Same as in iconv_to_ucs_ces_handlers_t */
|
/* Same as in iconv_to_ucs_ces_handlers_t */
|
||||||
int _EXPARM(is_stateful, (_VOID_PTR data));
|
int _EXFNPTR(is_stateful, (_VOID_PTR data));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* convert_from_ucs - convert UCS character to destination encoding.
|
* convert_from_ucs - convert UCS character to destination encoding.
|
||||||
@ -215,7 +215,7 @@ typedef struct
|
|||||||
* If there is no corresponding character in destination encoding, returns
|
* If there is no corresponding character in destination encoding, returns
|
||||||
* ICONV_CES_INVALID_CHARACTER.
|
* ICONV_CES_INVALID_CHARACTER.
|
||||||
*/
|
*/
|
||||||
size_t _EXPARM(convert_from_ucs, (_VOID_PTR data,
|
size_t _EXFNPTR(convert_from_ucs, (_VOID_PTR data,
|
||||||
ucs4_t in,
|
ucs4_t in,
|
||||||
unsigned char **outbuf,
|
unsigned char **outbuf,
|
||||||
size_t *outbytesleft));
|
size_t *outbytesleft));
|
||||||
|
@ -61,10 +61,12 @@
|
|||||||
#define _EXFUN_NOTHROW(name, proto) __cdecl name proto _NOTHROW
|
#define _EXFUN_NOTHROW(name, proto) __cdecl name proto _NOTHROW
|
||||||
#define _EXFUN(name, proto) __cdecl name proto
|
#define _EXFUN(name, proto) __cdecl name proto
|
||||||
#define _EXPARM(name, proto) (* __cdecl name) proto
|
#define _EXPARM(name, proto) (* __cdecl name) proto
|
||||||
|
#define _EXFNPTR(name, proto) (__cdecl * name) proto
|
||||||
#else
|
#else
|
||||||
#define _EXFUN_NOTHROW(name, proto) name proto _NOTHROW
|
#define _EXFUN_NOTHROW(name, proto) name proto _NOTHROW
|
||||||
#define _EXFUN(name, proto) name proto
|
#define _EXFUN(name, proto) name proto
|
||||||
#define _EXPARM(name, proto) (* name) proto
|
#define _EXPARM(name, proto) (* name) proto
|
||||||
|
#define _EXFNPTR(name, proto) (* name) proto
|
||||||
#endif
|
#endif
|
||||||
#define _DEFUN(name, arglist, args) name(args)
|
#define _DEFUN(name, arglist, args) name(args)
|
||||||
#define _DEFUN_VOID(name) name(_NOARGS)
|
#define _DEFUN_VOID(name) name(_NOARGS)
|
||||||
|
@ -74,7 +74,7 @@ _PTR _EXFUN(bsearch,(const _PTR __key,
|
|||||||
const _PTR __base,
|
const _PTR __base,
|
||||||
size_t __nmemb,
|
size_t __nmemb,
|
||||||
size_t __size,
|
size_t __size,
|
||||||
int _EXPARM(_compar,(const _PTR, const _PTR))));
|
int _EXFNPTR(_compar,(const _PTR, const _PTR))));
|
||||||
_PTR _EXFUN_NOTHROW(calloc,(size_t __nmemb, size_t __size));
|
_PTR _EXFUN_NOTHROW(calloc,(size_t __nmemb, size_t __size));
|
||||||
div_t _EXFUN(div,(int __numer, int __denom));
|
div_t _EXFUN(div,(int __numer, int __denom));
|
||||||
_VOID _EXFUN(exit,(int __status) _ATTRIBUTE ((noreturn)));
|
_VOID _EXFUN(exit,(int __status) _ATTRIBUTE ((noreturn)));
|
||||||
|
@ -182,12 +182,12 @@ struct __sFILE {
|
|||||||
/* operations */
|
/* operations */
|
||||||
_PTR _cookie; /* cookie passed to io functions */
|
_PTR _cookie; /* cookie passed to io functions */
|
||||||
|
|
||||||
_READ_WRITE_RETURN_TYPE _EXFUN((*_read),(struct _reent *, _PTR,
|
_READ_WRITE_RETURN_TYPE _EXFNPTR(_read, (struct _reent *, _PTR,
|
||||||
char *, int));
|
char *, int));
|
||||||
_READ_WRITE_RETURN_TYPE _EXFUN((*_write),(struct _reent *, _PTR,
|
_READ_WRITE_RETURN_TYPE _EXFNPTR(_write, (struct _reent *, _PTR,
|
||||||
const char *, int));
|
const char *, int));
|
||||||
_fpos_t _EXFUN((*_seek),(struct _reent *, _PTR, _fpos_t, int));
|
_fpos_t _EXFNPTR(_seek, (struct _reent *, _PTR, _fpos_t, int));
|
||||||
int _EXFUN((*_close),(struct _reent *, _PTR));
|
int _EXFNPTR(_close, (struct _reent *, _PTR));
|
||||||
|
|
||||||
/* separate buffer for long sequences of ungetc() */
|
/* separate buffer for long sequences of ungetc() */
|
||||||
struct __sbuf _ub; /* ungetc buffer */
|
struct __sbuf _ub; /* ungetc buffer */
|
||||||
@ -237,12 +237,12 @@ struct __sFILE64 {
|
|||||||
/* operations */
|
/* operations */
|
||||||
_PTR _cookie; /* cookie passed to io functions */
|
_PTR _cookie; /* cookie passed to io functions */
|
||||||
|
|
||||||
_READ_WRITE_RETURN_TYPE _EXFUN((*_read),(struct _reent *, _PTR,
|
_READ_WRITE_RETURN_TYPE _EXFNPTR(_read, (struct _reent *, _PTR,
|
||||||
char *, int));
|
char *, int));
|
||||||
_READ_WRITE_RETURN_TYPE _EXFUN((*_write),(struct _reent *, _PTR,
|
_READ_WRITE_RETURN_TYPE _EXFNPTR(_write, (struct _reent *, _PTR,
|
||||||
const char *, int));
|
const char *, int));
|
||||||
_fpos_t _EXFUN((*_seek),(struct _reent *, _PTR, _fpos_t, int));
|
_fpos_t _EXFNPTR(_seek, (struct _reent *, _PTR, _fpos_t, int));
|
||||||
int _EXFUN((*_close),(struct _reent *, _PTR));
|
int _EXFNPTR(_close, (struct _reent *, _PTR));
|
||||||
|
|
||||||
/* separate buffer for long sequences of ungetc() */
|
/* separate buffer for long sequences of ungetc() */
|
||||||
struct __sbuf _ub; /* ungetc buffer */
|
struct __sbuf _ub; /* ungetc buffer */
|
||||||
@ -261,7 +261,7 @@ struct __sFILE64 {
|
|||||||
int _flags2; /* for future use */
|
int _flags2; /* for future use */
|
||||||
|
|
||||||
_off64_t _offset; /* current lseek offset */
|
_off64_t _offset; /* current lseek offset */
|
||||||
_fpos64_t _EXFUN((*_seek64),(struct _reent *, _PTR, _fpos64_t, int));
|
_fpos64_t _EXFNPTR(_seek64, (struct _reent *, _PTR, _fpos64_t, int));
|
||||||
|
|
||||||
#ifndef __SINGLE_THREAD__
|
#ifndef __SINGLE_THREAD__
|
||||||
_flock_t _lock; /* for thread-safety locking */
|
_flock_t _lock; /* for thread-safety locking */
|
||||||
@ -376,7 +376,7 @@ struct _reent
|
|||||||
|
|
||||||
struct _mprec *_mp;
|
struct _mprec *_mp;
|
||||||
|
|
||||||
void _EXFUN((*__cleanup),(struct _reent *));
|
void _EXFNPTR(__cleanup, (struct _reent *));
|
||||||
|
|
||||||
int _gamma_signgam;
|
int _gamma_signgam;
|
||||||
|
|
||||||
@ -593,7 +593,7 @@ struct _reent
|
|||||||
|
|
||||||
int __sdidinit; /* 1 means stdio has been init'd */
|
int __sdidinit; /* 1 means stdio has been init'd */
|
||||||
|
|
||||||
void _EXFUN((*__cleanup),(struct _reent *));
|
void _EXFNPTR(__cleanup, (struct _reent *));
|
||||||
|
|
||||||
/* used by mprec routines */
|
/* used by mprec routines */
|
||||||
struct _Bigint *_result;
|
struct _Bigint *_result;
|
||||||
|
@ -30,8 +30,8 @@ int _EXFUN(close, (int __fildes ));
|
|||||||
#if defined(__CYGWIN__)
|
#if defined(__CYGWIN__)
|
||||||
size_t _EXFUN(confstr, (int __name, char *__buf, size_t __len));
|
size_t _EXFUN(confstr, (int __name, char *__buf, size_t __len));
|
||||||
#endif
|
#endif
|
||||||
char _EXFUN(*ctermid, (char *__s ));
|
char * _EXFUN(ctermid, (char *__s ));
|
||||||
char _EXFUN(*cuserid, (char *__s ));
|
char * _EXFUN(cuserid, (char *__s ));
|
||||||
#if defined(__CYGWIN__)
|
#if defined(__CYGWIN__)
|
||||||
int _EXFUN(daemon, (int nochdir, int noclose));
|
int _EXFUN(daemon, (int nochdir, int noclose));
|
||||||
#endif
|
#endif
|
||||||
@ -67,7 +67,7 @@ pid_t _EXFUN(fork, (void ));
|
|||||||
long _EXFUN(fpathconf, (int __fd, int __name ));
|
long _EXFUN(fpathconf, (int __fd, int __name ));
|
||||||
int _EXFUN(fsync, (int __fd));
|
int _EXFUN(fsync, (int __fd));
|
||||||
int _EXFUN(fdatasync, (int __fd));
|
int _EXFUN(fdatasync, (int __fd));
|
||||||
char _EXFUN(*getcwd, (char *__buf, size_t __size ));
|
char * _EXFUN(getcwd, (char *__buf, size_t __size ));
|
||||||
#if defined(__CYGWIN__)
|
#if defined(__CYGWIN__)
|
||||||
int _EXFUN(getdomainname ,(char *__name, size_t __len));
|
int _EXFUN(getdomainname ,(char *__name, size_t __len));
|
||||||
#endif
|
#endif
|
||||||
@ -80,11 +80,11 @@ int _EXFUN(getgroups, (int __gidsetsize, gid_t __grouplist[] ));
|
|||||||
#if defined(__CYGWIN__)
|
#if defined(__CYGWIN__)
|
||||||
long _EXFUN(gethostid, (void));
|
long _EXFUN(gethostid, (void));
|
||||||
#endif
|
#endif
|
||||||
char _EXFUN(*getlogin, (void ));
|
char * _EXFUN(getlogin, (void ));
|
||||||
#if defined(_POSIX_THREAD_SAFE_FUNCTIONS)
|
#if defined(_POSIX_THREAD_SAFE_FUNCTIONS)
|
||||||
int _EXFUN(getlogin_r, (char *name, size_t namesize) );
|
int _EXFUN(getlogin_r, (char *name, size_t namesize) );
|
||||||
#endif
|
#endif
|
||||||
char _EXFUN(*getpass, (const char *__prompt));
|
char * _EXFUN(getpass, (const char *__prompt));
|
||||||
int _EXFUN(getpagesize, (void));
|
int _EXFUN(getpagesize, (void));
|
||||||
#if defined(__CYGWIN__)
|
#if defined(__CYGWIN__)
|
||||||
int _EXFUN(getpeereid, (int, uid_t *, gid_t *));
|
int _EXFUN(getpeereid, (int, uid_t *, gid_t *));
|
||||||
@ -101,7 +101,7 @@ uid_t _EXFUN(getuid, (void ));
|
|||||||
#endif
|
#endif
|
||||||
#ifdef __CYGWIN__
|
#ifdef __CYGWIN__
|
||||||
char * _EXFUN(getusershell, (void));
|
char * _EXFUN(getusershell, (void));
|
||||||
char _EXFUN(*getwd, (char *__buf ));
|
char * _EXFUN(getwd, (char *__buf ));
|
||||||
int _EXFUN(iruserok, (unsigned long raddr, int superuser, const char *ruser, const char *luser));
|
int _EXFUN(iruserok, (unsigned long raddr, int superuser, const char *ruser, const char *luser));
|
||||||
#endif
|
#endif
|
||||||
int _EXFUN(isatty, (int __fildes ));
|
int _EXFUN(isatty, (int __fildes ));
|
||||||
@ -169,7 +169,7 @@ void _EXFUN(swab, (const void *, void *, ssize_t));
|
|||||||
long _EXFUN(sysconf, (int __name ));
|
long _EXFUN(sysconf, (int __name ));
|
||||||
pid_t _EXFUN(tcgetpgrp, (int __fildes ));
|
pid_t _EXFUN(tcgetpgrp, (int __fildes ));
|
||||||
int _EXFUN(tcsetpgrp, (int __fildes, pid_t __pgrp_id ));
|
int _EXFUN(tcsetpgrp, (int __fildes, pid_t __pgrp_id ));
|
||||||
char _EXFUN(*ttyname, (int __fildes ));
|
char * _EXFUN(ttyname, (int __fildes ));
|
||||||
#if defined(__CYGWIN__) || defined(__rtems__)
|
#if defined(__CYGWIN__) || defined(__rtems__)
|
||||||
int _EXFUN(ttyname_r, (int, char *, size_t));
|
int _EXFUN(ttyname_r, (int, char *, size_t));
|
||||||
#endif
|
#endif
|
||||||
|
@ -69,7 +69,7 @@ _DEFUN (bsearch, (key, base, nmemb, size, compar),
|
|||||||
_CONST _PTR base _AND
|
_CONST _PTR base _AND
|
||||||
size_t nmemb _AND
|
size_t nmemb _AND
|
||||||
size_t size _AND
|
size_t size _AND
|
||||||
int _EXFUN ((*compar), (const _PTR, const _PTR)))
|
int _EXFNPTR(compar, (const _PTR, const _PTR)))
|
||||||
{
|
{
|
||||||
_PTR current;
|
_PTR current;
|
||||||
size_t lower = 0;
|
size_t lower = 0;
|
||||||
|
@ -123,7 +123,7 @@ _DEFUN(_fseek_r, (ptr, fp, offset, whence),
|
|||||||
long offset _AND
|
long offset _AND
|
||||||
int whence)
|
int whence)
|
||||||
{
|
{
|
||||||
_fpos_t _EXFUN((*seekfn), (struct _reent *, _PTR, _fpos_t, int));
|
_fpos_t _EXFNPTR(seekfn, (struct _reent *, _PTR, _fpos_t, int));
|
||||||
_fpos_t target;
|
_fpos_t target;
|
||||||
_fpos_t curoff = 0;
|
_fpos_t curoff = 0;
|
||||||
size_t n;
|
size_t n;
|
||||||
|
@ -104,7 +104,7 @@ _DEFUN (_fseeko64_r, (ptr, fp, offset, whence),
|
|||||||
_off64_t offset _AND
|
_off64_t offset _AND
|
||||||
int whence)
|
int whence)
|
||||||
{
|
{
|
||||||
_fpos64_t _EXFUN ((*seekfn), (struct _reent *, void *, _fpos64_t, int));
|
_fpos64_t _EXFNPTR(seekfn, (struct _reent *, void *, _fpos64_t, int));
|
||||||
_fpos64_t target, curoff;
|
_fpos64_t target, curoff;
|
||||||
size_t n;
|
size_t n;
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
|
|||||||
int
|
int
|
||||||
_DEFUN (atexit,
|
_DEFUN (atexit,
|
||||||
(fn),
|
(fn),
|
||||||
_VOID _EXFUN ((*fn), (_VOID)))
|
_VOID _EXFNPTR(fn, (_VOID)))
|
||||||
{
|
{
|
||||||
return __register_exitproc (__et_atexit, fn, NULL, NULL);
|
return __register_exitproc (__et_atexit, fn, NULL, NULL);
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,7 @@ Supporting OS subroutines required: None
|
|||||||
int
|
int
|
||||||
_DEFUN (on_exit,
|
_DEFUN (on_exit,
|
||||||
(fn, arg),
|
(fn, arg),
|
||||||
_VOID _EXFUN ((*fn), (int, _PTR)) _AND
|
_VOID _EXFNPTR(fn, (int, _PTR)) _AND
|
||||||
_PTR arg)
|
_PTR arg)
|
||||||
{
|
{
|
||||||
return __register_exitproc (__et_onexit, (void (*)(void)) fn, arg, NULL);
|
return __register_exitproc (__et_onexit, (void (*)(void)) fn, arg, NULL);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user