File: types.h

package info (click to toggle)
mkelfimage 2.7-6
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 744 kB
  • ctags: 1,336
  • sloc: ansic: 5,334; sh: 2,496; asm: 682; makefile: 172
file content (18 lines) | stat: -rw-r--r-- 294 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef TYPES_H
#define TYPES_H

#include <stdint.h>
#include <stddef.h>

typedef uint8_t  u8;
typedef int8_t   s8;
typedef uint16_t u16;
typedef int16_t  s16;
typedef uint32_t u32;
typedef int32_t  s32;
typedef uint64_t u64;
typedef int64_t  s64;

/* FIXME is BITS_PER_LONG needed? */

#endif