mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 12:12:25 +00:00
Correct size_t definition for OpenBSD .gt. 6.2 thanks to @ibara
This commit is contained in:
parent
2ec7f3277a
commit
1bd70f367e
187 changed files with 205 additions and 197 deletions
|
|
@ -19,7 +19,11 @@
|
|||
typedef unsigned long size_t;
|
||||
#endif
|
||||
#else
|
||||
typedef unsigned int size_t;
|
||||
#if defined(__OpenBSD__)
|
||||
typedef unsigned long size_t;
|
||||
#else
|
||||
typedef unsigned int size_t;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define _SIZE_T_DECLARED // For FreeBSD
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue