projects
/
mes.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
mescc: Mes C Libray: Fix off_t.
[mes.git]
/
include
/
sys
/
types.h
diff --git
a/include/sys/types.h
b/include/sys/types.h
index 03dd10418f330e1de7f58e541ec85ae06a5e695e..a1b0726c182af5bb68592d8790443ac9de1674b4 100644
(file)
--- a/
include/sys/types.h
+++ b/
include/sys/types.h
@@
-87,7
+87,7
@@
typedef unsigned long uintptr_t;
#ifndef __MES_OFF_T
#define __MES_OFF_T
#undef off_t
-typedef
unsigned
long off_t;
+typedef long off_t;
#endif
#ifndef __MES_OFF64_T