annotate TOOLS/cygwin_inttypes.h @ 8538:6973e76d95b2

In this situation it was easier to fix yours. I applied these 3 points (fixed locking echo, removed excessive cut to make script a bit faster and shortened grep) and changed copy mark from "x" to "" in order to use -z and -n tests. patch by GoTaR <priv0.onet.pl->gotar>
author arpi
date Mon, 23 Dec 2002 17:28:19 +0000
parents 15da29db3ff1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2183
15da29db3ff1 don't expect win32 bin yet, only wanna have this already in cvs, btw. it has to be copied to main/inttypes.h
atmos4
parents:
diff changeset
1 #ifndef _CYGWIN_INTTYPES_H
15da29db3ff1 don't expect win32 bin yet, only wanna have this already in cvs, btw. it has to be copied to main/inttypes.h
atmos4
parents:
diff changeset
2 #define _CYGWIN_INTTYPES_H
15da29db3ff1 don't expect win32 bin yet, only wanna have this already in cvs, btw. it has to be copied to main/inttypes.h
atmos4
parents:
diff changeset
3 #include <sys/types.h>
15da29db3ff1 don't expect win32 bin yet, only wanna have this already in cvs, btw. it has to be copied to main/inttypes.h
atmos4
parents:
diff changeset
4 typedef u_int8_t uint8_t;
15da29db3ff1 don't expect win32 bin yet, only wanna have this already in cvs, btw. it has to be copied to main/inttypes.h
atmos4
parents:
diff changeset
5 typedef u_int16_t uint16_t;
15da29db3ff1 don't expect win32 bin yet, only wanna have this already in cvs, btw. it has to be copied to main/inttypes.h
atmos4
parents:
diff changeset
6 typedef u_int32_t uint32_t;
15da29db3ff1 don't expect win32 bin yet, only wanna have this already in cvs, btw. it has to be copied to main/inttypes.h
atmos4
parents:
diff changeset
7 typedef u_int64_t uint64_t;
15da29db3ff1 don't expect win32 bin yet, only wanna have this already in cvs, btw. it has to be copied to main/inttypes.h
atmos4
parents:
diff changeset
8 #endif