Skip to content

Commit

Permalink
stdint.h: added
Browse files Browse the repository at this point in the history
  • Loading branch information
aligrudi committed May 24, 2011
1 parent d36a409 commit c7b18d9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
12 changes: 1 addition & 11 deletions inttypes.h
Original file line number Diff line number Diff line change
@@ -1,11 +1 @@
#ifndef _INTTYPES_H
#define _INTTYPES_H

typedef char int8_t;
typedef short int16_t;
typedef int int32_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;

#endif
#include <stdint.h>
11 changes: 11 additions & 0 deletions stdint.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#ifndef _INTTYPES_H
#define _INTTYPES_H

typedef char int8_t;
typedef short int16_t;
typedef int int32_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;

#endif

0 comments on commit c7b18d9

Please sign in to comment.