Match and link IObj

Former-commit-id: bef91d45de
This commit is contained in:
2022-10-06 02:23:45 -07:00
parent ec9e639009
commit 5c0e4be01c
5 changed files with 25 additions and 30 deletions

View File

@@ -29,21 +29,6 @@ extern unsigned char __upper_map[];
#define __control (__motion_char | __control_char)
#define __zero_fill(c) ((int)(unsigned char)(c))
int isalnum(int);
int isalpha(int);
int iscntrl(int);
int isdigit(int);
int isgraph(int);
int islower(int);
int isprint(int);
int ispunct(int);
int isspace(int);
int isupper(int);
int isxdigit(int);
int tolower(int);
int toupper(int);
int iswblank(int);
#ifndef _CTYPE_INLINE
#define _CTYPE_INLINE static inline
#endif