|
Last change
on this file since 126 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 |
|
|---|
| 6 | typedef unsigned char my_uint8_t;
|
|---|
| 7 | typedef unsigned short int my_uint16_t;
|
|---|
| 8 | typedef unsigned int my_uint32_t;
|
|---|
| 9 |
|
|---|
| 10 | typedef char my_int8_t;
|
|---|
| 11 | typedef short int my_int16_t;
|
|---|
| 12 | typedef int my_int32_t;
|
|---|
| 13 |
|
|---|
| 14 | #endif
|
|---|
| 15 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.