Subversion Repositories Tewi

Rev

Rev 378 | Rev 382 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 378 Rev 379
Line 1... Line 1...
1
/* $Id: stdint.h 378 2024-10-17 10:21:23Z nishi $ */
1
/* $Id: stdint.h 379 2024-10-17 10:22:15Z nishi $ */
2
 
2
 
3
#ifndef __STDINT_H__
3
#ifndef __STDINT_H__
4
#define __STDINT_H__
4
#define __STDINT_H__
5
 
5
 
6
#ifdef __bsdi__
6
#ifdef __bsdi__
-
 
7
#include <machine/types.h>
7
typedef u_int8_t uint8_t;
8
typedef u_int8_t uint8_t;
8
typedef u_int16_t uint16_t;
9
typedef u_int16_t uint16_t;
9
typedef u_int32_t uint32_t;
10
typedef u_int32_t uint32_t;
10
typedef u_int64_t uint64_t;
11
typedef u_int64_t uint64_t;
11
#else
12
#else