mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-02 17:28:30 +00:00
Remove _Hide keyword
It never did anything and isn't worthwhile as documentation.
This commit is contained in:
parent
4fb6cbc1fe
commit
e0c2b91b3e
131 changed files with 716 additions and 917 deletions
6
third_party/zlib/zutil.internal.h
vendored
6
third_party/zlib/zutil.internal.h
vendored
|
@ -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] _Hide; /* indexed by 2-zlib_error */
|
||||
extern const char *const z_errmsg[10]; /* 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] _Hide; /* indexed by 2-zlib_error */
|
|||
|
||||
/* Diagnostic functions */
|
||||
#ifdef ZLIB_DEBUG
|
||||
extern int z_verbose _Hide;
|
||||
extern void z_error(const char *, int, char *) _Hide;
|
||||
extern int z_verbose;
|
||||
extern void z_error(const char *, int, char *);
|
||||
#define Assert(cond, msg) \
|
||||
{ \
|
||||
if (!(cond)) { \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue