summaryrefslogtreecommitdiff
path: root/openpcd/firmware/include/types.h
blob: f17ffe5139a11391371178a1ab8cb201ada047ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _TYPES_H
#define _TYPES_H

typedef unsigned char	u_int8_t;
typedef unsigned short	u_int16_t;
typedef unsigned int	u_int32_t;
typedef unsigned long long u_int64_t;

typedef	signed char	int8_t;
typedef signed short	int16_t;
typedef signed int	int32_t;
typedef signed long long int64_t;

#endif
personal git repositories of Harald Welte. Your mileage may vary