| /utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/ |
| H A D | stdio.h | 201 FILE * _EXFUN(tmpfile, (void)); 202 char * _EXFUN(tmpnam, (char *)); 203 int _EXFUN(fclose, (FILE *)); 204 int _EXFUN(fflush, (FILE *)); 205 FILE * _EXFUN(freopen, (const char *, const char *, FILE *)); 206 void _EXFUN(setbuf, (FILE *, char *)); 207 int _EXFUN(setvbuf, (FILE *, char *, int, size_t)); 208 int _EXFUN(fprintf, (FILE *, const char *, ...)); 209 int _EXFUN(fscanf, (FILE *, const char *, ...)); 210 int _EXFUN(printf, (const char *, ...)); [all …]
|
| H A D | stdlib.h | 61 _VOID _EXFUN(abort,(_VOID) _ATTRIBUTE ((noreturn))); 62 int _EXFUN(abs,(int)); 63 int _EXFUN(atexit,(_VOID (*__func)(_VOID))); 64 double _EXFUN(atof,(const char *__nptr)); 66 float _EXFUN(atoff,(const char *__nptr)); 68 int _EXFUN(atoi,(const char *__nptr)); 69 int _EXFUN(_atoi_r,(struct _reent *, const char *__nptr)); 70 long _EXFUN(atol,(const char *__nptr)); 71 long _EXFUN(_atol_r,(struct _reent *, const char *__nptr)); 72 _PTR _EXFUN(bsearch,(const _PTR __key, [all …]
|
| H A D | pthread.h | 53 int _EXFUN(pthread_mutexattr_init, (pthread_mutexattr_t *attr)); 54 int _EXFUN(pthread_mutexattr_destroy, (pthread_mutexattr_t *attr)); 55 int _EXFUN(pthread_mutexattr_getpshared, 57 int _EXFUN(pthread_mutexattr_setpshared, 62 int _EXFUN(pthread_mutex_init, 64 int _EXFUN(pthread_mutex_destroy, (pthread_mutex_t *mutex)); 76 int _EXFUN(pthread_mutex_lock, (pthread_mutex_t *mutex)); 77 int _EXFUN(pthread_mutex_trylock, (pthread_mutex_t *mutex)); 78 int _EXFUN(pthread_mutex_unlock, (pthread_mutex_t *mutex)); 82 int _EXFUN(pthread_mutex_timedlock, [all …]
|
| H A D | string.h | 22 _PTR _EXFUN(memchr,(const _PTR, int, size_t)); 23 int _EXFUN(memcmp,(const _PTR, const _PTR, size_t)); 24 _PTR _EXFUN(memcpy,(_PTR, const _PTR, size_t)); 25 _PTR _EXFUN(memmove,(_PTR, const _PTR, size_t)); 26 _PTR _EXFUN(memset,(_PTR, int, size_t)); 27 char *_EXFUN(strcat,(char *, const char *)); 28 char *_EXFUN(strchr,(const char *, int)); 29 int _EXFUN(strcmp,(const char *, const char *)); 30 int _EXFUN(strcoll,(const char *, const char *)); 31 char *_EXFUN(strcpy,(char *, const char *)); [all …]
|
| H A D | wchar.h | 43 wint_t _EXFUN(btowc, (int)); 44 int _EXFUN(wctob, (wint_t)); 45 size_t _EXFUN(mbrlen, (const char * , size_t, mbstate_t *)); 46 size_t _EXFUN(mbrtowc, (wchar_t * , const char * , size_t, mbstate_t *)); 47 size_t _EXFUN(_mbrtowc_r, (struct _reent *, wchar_t * , const char * , 49 int _EXFUN(mbsinit, (const mbstate_t *)); 50 size_t _EXFUN(mbsrtowcs, (wchar_t * , const char ** , size_t, mbstate_t *)); 51 size_t _EXFUN(wcrtomb, (char * , wchar_t, mbstate_t *)); 52 size_t _EXFUN(_wcrtomb_r, (struct _reent *, char * , wchar_t, mbstate_t *)); 53 size_t _EXFUN(wcsrtombs, (char * , const wchar_t ** , size_t, mbstate_t *)); [all …]
|
| H A D | time.h | 46 clock_t _EXFUN(clock, (void)); 47 double _EXFUN(difftime, (time_t _time2, time_t _time1)); 48 time_t _EXFUN(mktime, (struct tm *_timeptr)); 49 time_t _EXFUN(time, (time_t *_timer)); 51 char *_EXFUN(asctime, (const struct tm *_tblock)); 52 char *_EXFUN(ctime, (const time_t *_time)); 53 struct tm *_EXFUN(gmtime, (const time_t *_timer)); 54 struct tm *_EXFUN(localtime,(const time_t *_timer)); 56 size_t _EXFUN(strftime, (char *_s, size_t _maxsize, const char *_fmt, const struct tm *_t)); 58 char *_EXFUN(asctime_r, (const struct tm *, char *)); [all …]
|
| H A D | wctype.h | 26 int _EXFUN(iswalpha, (wint_t)); 27 int _EXFUN(iswalnum, (wint_t)); 28 int _EXFUN(iswblank, (wint_t)); 29 int _EXFUN(iswcntrl, (wint_t)); 30 int _EXFUN(iswctype, (wint_t, wctype_t)); 31 int _EXFUN(iswdigit, (wint_t)); 32 int _EXFUN(iswgraph, (wint_t)); 33 int _EXFUN(iswlower, (wint_t)); 34 int _EXFUN(iswprint, (wint_t)); 35 int _EXFUN(iswpunct, (wint_t)); [all …]
|
| H A D | ctype.h | 8 int _EXFUN(isalnum, (int __c)); 9 int _EXFUN(isalpha, (int __c)); 10 int _EXFUN(iscntrl, (int __c)); 11 int _EXFUN(isdigit, (int __c)); 12 int _EXFUN(isgraph, (int __c)); 13 int _EXFUN(islower, (int __c)); 14 int _EXFUN(isprint, (int __c)); 15 int _EXFUN(ispunct, (int __c)); 16 int _EXFUN(isspace, (int __c)); 17 int _EXFUN(isupper, (int __c)); [all …]
|
| H A D | ieeefp.h | 161 fp_rnd _EXFUN(fpgetround,(void)); 162 fp_rnd _EXFUN(fpsetround, (fp_rnd)); 173 fp_except _EXFUN(fpgetmask,(void)); 174 fp_except _EXFUN(fpsetmask,(fp_except)); 175 fp_except _EXFUN(fpgetsticky,(void)); 176 fp_except _EXFUN(fpsetsticky, (fp_except)); 184 fp_rdi _EXFUN(fpgetroundtoi,(void)); 185 fp_rdi _EXFUN(fpsetroundtoi,(fp_rdi)); 187 int _EXFUN(isnan, (double)); 188 int _EXFUN(isinf, (double)); [all …]
|
| H A D | iconv.h | 41 _EXFUN(iconv_open, (_CONST char *, _CONST char *)); 44 _EXFUN(iconv, (iconv_t, _CONST char **, size_t *, char **, size_t *)); 47 _EXFUN(iconv_close, (iconv_t)); 51 _EXFUN(_iconv_open_r, (struct _reent *, _CONST char *, _CONST char *)); 54 _EXFUN(_iconv_r, (struct _reent *, iconv_t, _CONST char **, 58 _EXFUN(_iconv_close_r, (struct _reent *, iconv_t));
|
| H A D | signal.h | 17 _sig_func_ptr _EXFUN(_signal_r, (struct _reent *, int, _sig_func_ptr)); 18 int _EXFUN(_raise_r, (struct _reent *, int)); 21 _sig_func_ptr _EXFUN(signal, (int, _sig_func_ptr)); 22 int _EXFUN(raise, (int));
|
| H A D | locale.h | 49 char *_EXFUN(setlocale,(int category, const char *locale)); 50 struct lconv *_EXFUN(localeconv,(void)); 54 char *_EXFUN(_setlocale_r,(struct _reent *, int category, const char *locale)); 55 struct lconv *_EXFUN(_localeconv_r,(struct _reent *));
|
| H A D | _ansi.h | 36 #define _EXFUN(name, proto) __cdecl name proto macro 39 #define _EXFUN(name, proto) name proto macro 60 #define _EXFUN(name, proto) name() macro
|
| H A D | libgen.h | 15 char *_EXFUN(basename, (char *)); 16 char *_EXFUN(dirname, (char *));
|
| H A D | setjmp.h | 14 void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval)); 15 int _EXFUN(setjmp,(jmp_buf __jmpb));
|
| H A D | alloca.h | 16 void * _EXFUN(alloca,(size_t));
|
| H A D | assert.h | 25 void _EXFUN(__assert,(const char *, int, const char *));
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/sys/ |
| H A D | unistd.h | 17 void _EXFUN(_exit, (int __status ) _ATTRIBUTE ((noreturn))); 19 int _EXFUN(access,(const char *__path, int __amode )); 20 unsigned _EXFUN(alarm, (unsigned __secs )); 21 int _EXFUN(chdir, (const char *__path )); 22 int _EXFUN(chmod, (const char *__path, mode_t __mode )); 24 int _EXFUN(chown, (const char *__path, uid_t __owner, gid_t __group )); 27 int _EXFUN(chroot, (const char *__path )); 29 int _EXFUN(close, (int __fildes )); 30 char _EXFUN(*ctermid, (char *__s )); 31 char _EXFUN(*cuserid, (char *__s )); [all …]
|
| H A D | signal.h | 131 int _EXFUN(sigprocmask, (int how, const sigset_t *set, sigset_t *oset)); 134 int _EXFUN(pthread_sigmask, (int how, const sigset_t *set, sigset_t *oset)); 145 int _EXFUN(kill, (int, int)); 146 int _EXFUN(killpg, (pid_t, int)); 147 int _EXFUN(sigaction, (int, const struct sigaction *, struct sigaction *)); 148 int _EXFUN(sigaddset, (sigset_t *, const int)); 149 int _EXFUN(sigdelset, (sigset_t *, const int)); 150 int _EXFUN(sigismember, (const sigset_t *, int)); 151 int _EXFUN(sigfillset, (sigset_t *)); 152 int _EXFUN(sigemptyset, (sigset_t *)); [all …]
|
| H A D | stat.h | 119 int _EXFUN(chmod,( const char *__path, mode_t __mode )); 120 int _EXFUN(fchmod,(int __fd, mode_t __mode)); 121 int _EXFUN(fstat,( int __fd, struct stat *__sbuf )); 123 int _EXFUN(fstat_size,( int __fd, long *size )); 125 int _EXFUN(mkdir,( const char *_path, mode_t __mode )); 126 int _EXFUN(mkfifo,( const char *__path, mode_t __mode )); 127 int _EXFUN(stat,( const char *__path, struct stat *__sbuf )); 129 int _EXFUN(stat_size,( const char *__path, long *size )); 131 mode_t _EXFUN(umask,( mode_t __mask )); 134 int _EXFUN(lstat,( const char *__path, struct stat *__buf )); [all …]
|
| H A D | iconvnls.h | 48 _EXFUN(_iconv_nls_get_state, (iconv_t cd, mbstate_t *ps, int direction)); 51 _EXFUN(_iconv_nls_set_state, (iconv_t cd, mbstate_t *ps, int direction)); 54 _EXFUN(_iconv_nls_is_stateful, (iconv_t cd, int direction)); 57 _EXFUN(_iconv_nls_get_mb_cur_max, (iconv_t cd, int direction)); 60 _EXFUN(_iconv_nls_conv, (struct _reent *rptr, iconv_t cd, 65 _EXFUN(_iconv_nls_construct_filename, (struct _reent *rptr, _CONST char *file, 70 _EXFUN(_iconv_nls_open, (struct _reent *rptr, _CONST char *encoding, 74 _EXFUN(_iconv_resolve_encoding_name, (struct _reent *rptr, _CONST char *ca));
|
| H A D | reent.h | 182 _READ_WRITE_RETURN_TYPE _EXFUN((*_read),(_PTR _cookie, char *_buf, int _n)); 183 _READ_WRITE_RETURN_TYPE _EXFUN((*_write),(_PTR _cookie, const char *_buf, 185 _fpos_t _EXFUN((*_seek),(_PTR _cookie, _fpos_t _offset, int _whence)); 186 int _EXFUN((*_close),(_PTR _cookie)); 228 _READ_WRITE_RETURN_TYPE _EXFUN((*_read),(_PTR _cookie, char *_buf, int _n)); 229 _READ_WRITE_RETURN_TYPE _EXFUN((*_write),(_PTR _cookie, const char *_buf, 231 _fpos_t _EXFUN((*_seek),(_PTR _cookie, _fpos_t _offset, int _whence)); 232 int _EXFUN((*_close),(_PTR _cookie)); 251 _fpos64_t _EXFUN((*_seek64),(_PTR _cookie, _fpos64_t _offset, int _whence)); 364 void _EXFUN((*__cleanup),(struct _reent *)); [all …]
|
| H A D | time.h | 73 int _EXFUN(gettimeofday, (struct timeval *__p, struct timezone *__z)); 74 int _EXFUN(settimeofday, (const struct timeval *, const struct timezone *)); 75 int _EXFUN(utimes, (const char *__path, const struct timeval *__tvp)); 76 int _EXFUN(getitimer, (int __which, struct itimerval *__value)); 77 int _EXFUN(setitimer, (int __which, const struct itimerval *__value,
|
| H A D | times.h | 23 clock_t _EXFUN(times,(struct tms *));
|