1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
%{
#ifdef __GNUC__
__inline
#endif
static unsigned int hash (const char *, unsigned int);
#ifdef __GNUC__
__inline
#endif
const char * libc_name_p (const char *, unsigned int);
%}
%%
# The standard C library functions, for feeding to gperf; the result is used
# by nothrow_libfn_p.
#
# [lib.res.on.exception.handling]: None of the functions from the
# Standard C library shall report an error by throwing an
# exception, unless it calls a program-supplied function that
# throws an exception.
#
# Specific functions are commented out for the reason noted in each case.
#
# abort -- synchronous exception from SIGABRT handler
abs
acos
asctime
asin
atan
atan2
atexit
atof
atoi
atol
#bsearch -- calls user function which may throw exception
btowc
calloc
ceil
clearerr
clock
cos
cosh
ctime
difftime
div
exit
exp
fabs
#fclose -- POSIX thread cancellation point
feof
ferror
#fflush -- POSIX thread cancellation point
#fgetc -- POSIX thread cancellation point
#fgetpos -- POSIX thread cancellation point
#fgets -- POSIX thread cancellation point
#fgetwc -- POSIX thread cancellation point
#fgetws -- POSIX thread cancellation point
floor
fmod
#fopen -- POSIX thread cancellation point
#fprintf -- POSIX thread cancellation point
#fputc -- POSIX thread cancellation point
#fputs -- POSIX thread cancellation point
#fputwc -- POSIX thread cancellation point
#fputws -- POSIX thread cancellation point
#fread -- POSIX thread cancellation point
free
#freopen -- POSIX thread cancellation point
frexp
#fscanf -- POSIX thread cancellation point
fseek
#fsetpos -- POSIX thread cancellation point
#ftell -- POSIX thread cancellation point
fwide
#fwprintf -- POSIX thread cancellation point
#fwrite -- POSIX thread cancellation point
#fwscanf -- POSIX thread cancellation point
#getc -- POSIX thread cancellation point
#getchar -- POSIX thread cancellation point
getenv
#gets -- POSIX thread cancellation point
#getwc -- POSIX thread cancellation point
#getwchar -- POSIX thread cancellation point
gmtime
isalnum
isalpha
iscntrl
isdigit
isgraph
islower
isprint
ispunct
isspace
isupper
iswalnum
iswalpha
iswcntrl
iswctype
iswdigit
iswgraph
iswlower
iswprint
iswpunct
iswspace
iswupper
iswxdigit
isxdigit
labs
ldexp
ldiv
localeconv
localtime
log
log10
longjmp
malloc
mblen
mbrlen
mbrtowc
mbsinit
mbsrtowcs
mbstowcs
mbtowc
memchr
memcmp
memcpy
memmove
memset
mktime
modf
#perror -- POSIX thread cancellation point
pow
#printf -- POSIX thread cancellation point
#putc -- POSIX thread cancellation point
#putchar -- POSIX thread cancellation point
#puts -- POSIX thread cancellation point
#putwc -- POSIX thread cancellation point
#putwchar -- POSIX thread cancellation point
#qsort -- calls user function which may throw exception
#raise -- synchronous exception from signal handler
rand
realloc
#remove -- POSIX thread cancellation point
#rename -- POSIX thread cancellation point
#rewind -- POSIX thread cancellation point
#scanf -- POSIX thread cancellation point
setbuf
setlocale
setvbuf
signal
sin
sinh
sprintf
sqrt
srand
sscanf
strcat
strchr
strcmp
strcoll
strcpy
strcspn
#strerror -- POSIX thread cancellation point
strftime
strlen
strncat
strncmp
strncpy
strpbrk
strrchr
strspn
strstr
strtod
strtok
strtol
strtoul
strxfrm
swprintf
swscanf
#system -- POSIX thread cancellation point
tan
tanh
time
#tmpfile -- POSIX thread cancellation point
#tmpnam -- POSIX thread cancellation point
tolower
toupper
towctrans
towlower
towupper
#ungetc -- POSIX thread cancellation point
#ungetwc -- POSIX thread cancellation point
#vfprintf -- POSIX thread cancellation point
#vfwprintf -- POSIX thread cancellation point
#vprintf -- POSIX thread cancellation point
vsprintf
vswprintf
#vwprintf -- POSIX thread cancellation point
wcrtomb
wcscat
wcschr
wcscmp
wcscoll
wcscpy
wcscspn
wcsftime
wcslen
wcsncat
wcsncmp
wcsncpy
wcspbrk
wcsrchr
wcsrtombs
wcsspn
wcsstr
wcstod
wcstok
wcstol
wcstombs
wcstoul
wcsxfrm
wctob
wctomb
wctrans
wctype
wmemchr
wmemcmp
wmemcpy
wmemmove
wmemset
#wprintf -- POSIX thread cancellation point
#wscanf -- POSIX thread cancellation point
|