mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-25 03:50:29 +00:00
Remove bool from public headers
This commit is contained in:
parent
dffee606cf
commit
1351d3cede
55 changed files with 105 additions and 98 deletions
|
@ -29,7 +29,7 @@
|
|||
* @assume stack memory isn't stored beneath %rsp (-mno-red-zone)
|
||||
* @deprecated
|
||||
*/
|
||||
optimizesize bool _isheap(void *p) {
|
||||
optimizesize bool32 _isheap(void *p) {
|
||||
intptr_t x, y;
|
||||
x = kAutomapStart;
|
||||
y = x + kAutomapSize;
|
||||
|
|
|
@ -81,7 +81,7 @@ extern const char kNtSystemDirectory[];
|
|||
extern const char kNtWindowsDirectory[];
|
||||
extern size_t __virtualmax;
|
||||
extern size_t __stackmax;
|
||||
extern bool __isworker;
|
||||
extern bool32 __isworker;
|
||||
/* utilities */
|
||||
void _intsort(int *, size_t);
|
||||
void _longsort(long *, size_t);
|
||||
|
@ -111,14 +111,14 @@ void CheckForMemoryLeaks(void);
|
|||
void CheckForFileLeaks(void);
|
||||
void __enable_threads(void);
|
||||
void __oom_hook(size_t);
|
||||
bool _isheap(void *);
|
||||
bool32 _isheap(void *);
|
||||
/* code morphing */
|
||||
void __morph_begin(void);
|
||||
void __morph_end(void);
|
||||
/* portability */
|
||||
int NtGetVersion(void) pureconst;
|
||||
bool IsGenuineBlink(void);
|
||||
bool IsCygwin(void);
|
||||
bool32 IsGenuineBlink(void);
|
||||
bool32 IsCygwin(void);
|
||||
const char *GetCpuidOs(void);
|
||||
const char *GetCpuidEmulator(void);
|
||||
void GetCpuidBrand(char[13], uint32_t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue