Change magnum types to match other platforms (#525)

This commit is contained in:
Jules Bertholet 2022-08-05 23:50:08 +02:00 committed by GitHub
parent af3df0893b
commit 5f552338d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
65 changed files with 1311 additions and 1305 deletions

View file

@ -4,50 +4,50 @@
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
extern const long MS_RDONLY;
extern const long MNT_RDONLY;
extern const long MS_NOSUID;
extern const long MNT_NOSUID;
extern const long MS_NODEV;
extern const long MNT_NODEV;
extern const long MS_NOEXEC;
extern const long MNT_NOEXEC;
extern const long MS_SYNCHRONOUS;
extern const long MNT_SYNCHRONOUS;
extern const long MS_REMOUNT;
extern const long MNT_UPDATE;
extern const long MS_MANDLOCK;
extern const long MS_DIRSYNC;
extern const long MS_NOATIME;
extern const long MNT_NOATIME;
extern const long MS_NODIRATIME;
extern const long MS_BIND;
extern const long MS_MOVE;
extern const long MS_REC;
extern const long MS_SILENT;
extern const long MS_POSIXACL;
extern const long MS_UNBINDABLE;
extern const long MS_PRIVATE;
extern const long MS_SLAVE;
extern const long MS_SHARED;
extern const long MS_RELATIME;
extern const long MNT_RELATIME;
extern const long MS_KERNMOUNT;
extern const long MS_I_VERSION;
extern const long MS_STRICTATIME;
extern const long MNT_STRICTATIME;
extern const long MS_LAZYTIME;
extern const long MS_ACTIVE;
extern const long MS_NOUSER;
extern const long MS_RMT_MASK;
extern const long MS_MGC_VAL;
extern const long MS_MGC_MSK;
extern const long MNT_ASYNC;
extern const long MNT_RELOAD;
extern const long MNT_SUIDDIR;
extern const long MNT_NOCLUSTERR;
extern const long MNT_NOCLUSTERW;
extern const long MNT_SNAPSHOT;
extern const unsigned long MS_RDONLY;
extern const int MNT_RDONLY;
extern const unsigned long MS_NOSUID;
extern const int MNT_NOSUID;
extern const unsigned long MS_NODEV;
extern const int MNT_NODEV;
extern const unsigned long MS_NOEXEC;
extern const int MNT_NOEXEC;
extern const unsigned long MS_SYNCHRONOUS;
extern const int MNT_SYNCHRONOUS;
extern const unsigned long MS_REMOUNT;
extern const int MNT_UPDATE;
extern const unsigned long MS_MANDLOCK;
extern const unsigned long MS_DIRSYNC;
extern const unsigned long MS_NOATIME;
extern const int MNT_NOATIME;
extern const unsigned long MS_NODIRATIME;
extern const unsigned long MS_BIND;
extern const unsigned long MS_MOVE;
extern const unsigned long MS_REC;
extern const unsigned long MS_SILENT;
extern const unsigned long MS_POSIXACL;
extern const unsigned long MS_UNBINDABLE;
extern const unsigned long MS_PRIVATE;
extern const unsigned long MS_SLAVE;
extern const unsigned long MS_SHARED;
extern const unsigned long MS_RELATIME;
extern const int MNT_RELATIME;
extern const unsigned long MS_KERNMOUNT;
extern const unsigned long MS_I_VERSION;
extern const unsigned long MS_STRICTATIME;
extern const int MNT_STRICTATIME;
extern const unsigned long MS_LAZYTIME;
extern const unsigned long MS_ACTIVE;
extern const unsigned long MS_NOUSER;
extern const unsigned long MS_RMT_MASK;
extern const unsigned long MS_MGC_VAL;
extern const unsigned long MS_MGC_MSK;
extern const int MNT_ASYNC;
extern const int MNT_RELOAD;
extern const int MNT_SUIDDIR;
extern const int MNT_NOCLUSTERR;
extern const int MNT_NOCLUSTERW;
extern const int MNT_SNAPSHOT;
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */