File: types.h

package info (click to toggle)
bing 1.3.5-5
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 456 kB
  • sloc: ansic: 3,774; makefile: 51
file content (21 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* $Id: types.h,v 1.3 1999/10/11 05:25:19 fgouget Exp $ */

#ifndef bing_types_h_
#define bing_types_h_

#include <sys/types.h>

/*
 * Missing in Microsoft's types.h
 */

typedef unsigned short	u_short;
typedef unsigned long	u_long;

typedef char* caddr_t;
typedef u_short n_short;		/* short as received from the net */
typedef u_long	n_long;			/* long as received from the net */

typedef	u_long	n_time;			/* ms since 00:00 GMT, byte rev */

#endif	/* End of File */