source: rtems/cpukit/libnetworking/machine/types.h @ 517660f1

4.104.114.84.95
Last change on this file since 517660f1 was 96b39164, checked in by Joel Sherrill <joel.sherrill@…>, on 08/20/98 at 21:56:40

Added CVS Ids

  • Property mode set to 100644
File size: 807 bytes
Line 
1/*
2 * This file will have to be incorparated into the RTEMS source
3 * tree (probably in the existing <machine/types.h> so that these
4 * contents are included when an application source file includes
5 * <sys/types.h>.
6 *
7 *  $Id$
8 */
9
10#ifndef _MACHINE_TYPES_H_
11#define _MACHINE_TYPES_H_
12
13#include <rtems.h>
14#include <machine/endian.h>
15
16typedef rtems_signed64          int64_t;
17typedef rtems_signed32          int32_t;
18typedef rtems_signed16          int16_t;
19typedef rtems_signed8           int8_t;
20
21typedef rtems_unsigned64        u_int64_t;
22typedef rtems_unsigned32        u_int32_t;
23typedef rtems_unsigned16        u_int16_t;
24typedef rtems_unsigned8         u_int8_t;
25
26#define _CLOCK_T_       unsigned long
27#define _TIME_T_        long
28
29#ifdef _COMPILING_BSD_KERNEL_
30#include <rtems/rtems_bsdnet_internal.h>
31#include <rtems/rtems_bsdnet.h>
32#endif
33
34#endif /* _MACHINE_TYPES_H_ */
Note: See TracBrowser for help on using the repository browser.