Rename hidden keyword to _Hide

This commit is contained in:
Justine Tunney 2022-11-08 11:39:50 -08:00
parent 251dcb07eb
commit bf7843833f
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
112 changed files with 616 additions and 3290 deletions

View file

@ -38,7 +38,7 @@ COSMOPOLITAN_C_START_
define "local" for the non-static meaning of "static", for readability
(compile with -Dlocal if your debugger can't find static symbols) */
extern const char *const z_errmsg[10] hidden; /* indexed by 2-zlib_error */
extern const char *const z_errmsg[10] _Hide; /* indexed by 2-zlib_error */
/* (size given to avoid silly warnings with Visual C++) */
#define ERR_MSG(err) z_errmsg[Z_NEED_DICT - (err)]
@ -52,8 +52,8 @@ extern const char *const z_errmsg[10] hidden; /* indexed by 2-zlib_error */
/* Diagnostic functions */
#ifdef ZLIB_DEBUG
extern int z_verbose hidden;
extern void z_error(const char *, int, char *) hidden;
extern int z_verbose _Hide;
extern void z_error(const char *, int, char *) _Hide;
#define Assert(cond, msg) \
{ \
if (!(cond)) { \