source: psi/trunk/iris/libidn/qint.h@ 82

Last change on this file since 82 was 2, checked in by dmik, 19 years ago

Imported original Psi 0.10 sources from Affinix

File size: 342 bytes
Line 
1// simple stdint.h-style replacement without any conflicts
2
3#ifndef QINT_H
4#define QINT_H
5
6typedef unsigned char my_uint8_t;
7typedef unsigned short int my_uint16_t;
8typedef unsigned int my_uint32_t;
9
10typedef char my_int8_t;
11typedef short int my_int16_t;
12typedef int my_int32_t;
13
14#endif
15
Note: See TracBrowser for help on using the repository browser.