mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-02 17:28:30 +00:00
Remove getopt_long() from headers
We removed this API a long time ago and it was breaking the GNU make open source build.
This commit is contained in:
parent
b881c0ec9e
commit
12452976bd
8 changed files with 12 additions and 23 deletions
|
@ -28,7 +28,7 @@ char *strpbrk(const char *s, const char *accept) {
|
|||
if (!accept[1]) {
|
||||
return strchr(s, accept[0]);
|
||||
} else {
|
||||
memset(lut, 0, sizeof(lut));
|
||||
bzero(lut, sizeof(lut));
|
||||
while (*accept) {
|
||||
lut[*accept++ & 255] = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue