Added inttypes.h (includes stuff like int8_t typedef), but it's not complete;

the strtoimax() functions and friends are missing.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1669 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2002-10-26 00:35:08 +00:00
parent 13bbbc9ac4
commit 0f1aeae76c
1 changed files with 19 additions and 0 deletions

19
headers/posix/inttypes.h Normal file
View File

@ -0,0 +1,19 @@
#ifndef _INTTYPES_H_
#define _INTTYPES_H_
/*
** Distributed under the terms of the OpenBeOS License.
*/
typedef signed char int8_t;
typedef signed short int int16_t;
typedef signed int int32_t;
typedef signed long long int64_t;
typedef unsigned char u_int8_t;
typedef unsigned short int u_int16_t;
typedef unsigned int u_int32_t;
typedef unsigned long long u_int64_t;
#endif /* _INTTYPES_H_ */