File: fixtypes.h

package info (click to toggle)
hping3 3.a2.ds1-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,104 kB
  • ctags: 1,376
  • sloc: ansic: 11,582; sh: 537; makefile: 128
file content (13 lines) | stat: -rw-r--r-- 330 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef HPING3_FIXTYPES_H
#define HPING3_FIXTYPES_H

#ifdef __sun__
typedef char                   int_8_t;
typedef unsigned char          u_int8_t;
typedef short                  int_16_t;
typedef unsigned short         u_int16_t;
typedef int                    int_32_t;
typedef unsigned int           u_int32_t;
#endif

#endif