File: _stdint.h

package info (click to toggle)
libexif 0.6.25-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,640 kB
  • sloc: ansic: 13,211; cpp: 457; makefile: 395; sh: 206
file content (17 lines) | stat: -rw-r--r-- 466 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* LICENSE: no restrictions at all, but USE ON YOUR OWN RISK ONLY.
 * SPDX-License-Identifier: LicenseRef-Wrobel
 * Copyright 2004-2008 Angela Wrobel <http://www.wrobelnet.de/>, et. al.
 */
#ifndef __STDINT_H
#define __STDINT_H
#include <sys/types.h>
typedef  unsigned char   uint8_t;
typedef  unsigned short  uint16_t;
typedef  unsigned long   uint32_t;

typedef    signed char   int8_t;
typedef    signed short  int16_t;
typedef    signed long   int32_t;
#endif