mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-28 07:18:30 +00:00
Fix ctype.h and wctype.h
This commit is contained in:
parent
e7be5a5e2b
commit
7ebaff34c6
180 changed files with 264 additions and 92 deletions
|
@ -60,6 +60,7 @@ Contact: antirez@gmail.com");
|
|||
#include "libc/calls/calls.h"
|
||||
#include "libc/calls/termios.h"
|
||||
#include "libc/calls/weirdtypes.h"
|
||||
#include "libc/ctype.h"
|
||||
#include "libc/errno.h"
|
||||
#include "libc/log/log.h"
|
||||
#include "libc/mem/alg.h"
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
#include "libc/calls/struct/sigaction.h"
|
||||
#include "libc/calls/struct/sigset.h"
|
||||
#include "libc/calls/termios.h"
|
||||
#include "libc/ctype.h"
|
||||
#include "libc/errno.h"
|
||||
#include "libc/log/check.h"
|
||||
#include "libc/log/log.h"
|
||||
|
|
|
@ -119,6 +119,7 @@
|
|||
#include "libc/calls/struct/stat.h"
|
||||
#include "libc/calls/struct/tms.h"
|
||||
#include "libc/calls/termios.h"
|
||||
#include "libc/ctype.h"
|
||||
#include "libc/dce.h"
|
||||
#include "libc/errno.h"
|
||||
#include "libc/fmt/conv.h"
|
||||
|
@ -11142,7 +11143,9 @@ static void exitreset() {
|
|||
inps4 = 0;
|
||||
}
|
||||
/* from expand.c: */
|
||||
{ ifsfree(); }
|
||||
{
|
||||
ifsfree();
|
||||
}
|
||||
/* from redir.c: */
|
||||
{
|
||||
/*
|
||||
|
@ -11165,9 +11168,13 @@ static void forkreset() {
|
|||
}
|
||||
}
|
||||
/* from main.c: */
|
||||
{ handler = &main_handler; }
|
||||
{
|
||||
handler = &main_handler;
|
||||
}
|
||||
/* from redir.c: */
|
||||
{ redirlist = NULL; }
|
||||
{
|
||||
redirlist = NULL;
|
||||
}
|
||||
/* from trap.c: */
|
||||
{
|
||||
char **tp;
|
||||
|
@ -11198,7 +11205,9 @@ static void reset() {
|
|||
popallfiles();
|
||||
}
|
||||
/* from var.c: */
|
||||
{ unwindlocalvars(0); }
|
||||
{
|
||||
unwindlocalvars(0);
|
||||
}
|
||||
}
|
||||
|
||||
static void calcsize(union node *n) {
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/calls/calls.h"
|
||||
#include "libc/calls/weirdtypes.h"
|
||||
#include "libc/ctype.h"
|
||||
#include "libc/errno.h"
|
||||
#include "libc/log/bsd.h"
|
||||
#include "libc/mem/mem.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue