blob: d997bd0391479baa3f02f937edd30780f4485679 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001<unistd.h>:
2
3lssek: Probably should be __wur but lseek(fd,SEEK_SET,0) will succeed if
4 the descriptor is fine.
5lseek64: same
6
7<stdio.h>:
8
9setvbuf: if stream and buffer are fine and other parameters constant,
10 it cannot really fail.
11fseek: see lseek
12fseeko: likewise
13fgetpos: similarly
14fsetpos: likewise
15
16
17<stdlib.h>:
18
19atexit: it is guaranteed that a certain number of handlers can be
20 registered, so some calls might need not be checked
21on_exit: same
22random functions: one might want to discard a number of results. In any
23 case, no security problem
24
25
26putenv: probably SHOULD be marked, but we'll wait a bit.
27setenv: likewise
28unsetenv: likewise
29clearenv: likewise
30
31mbstowcs: probably SHOULD be marked
32wcstombs: likewise
33
34ptsname_r: probably SHOULD be marked