forked from OSchip/llvm-project
[libc][obvious] Fix strtok_r signature in the spec.
This commit is contained in:
parent
ae209397b1
commit
e59d829971
libc/spec
|
@ -228,7 +228,9 @@ def POSIX : StandardSpec<"POSIX"> {
|
||||||
FunctionSpec<
|
FunctionSpec<
|
||||||
"strtok_r",
|
"strtok_r",
|
||||||
RetValSpec<CharPtr>,
|
RetValSpec<CharPtr>,
|
||||||
[ArgSpec<ConstRestrictedCharPtr>, ArgSpec<CharRestrictedDoublePtr>]
|
[ArgSpec<RestrictedCharPtr>,
|
||||||
|
ArgSpec<ConstRestrictedCharPtr>,
|
||||||
|
ArgSpec<CharRestrictedDoublePtr>]
|
||||||
>,
|
>,
|
||||||
]
|
]
|
||||||
>;
|
>;
|
||||||
|
|
Loading…
Reference in New Issue