aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdint.h
blob: be28300fe7ea9e889e561ab7652d73c14542092d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MELVIX_STDINT_H
#define MELVIX_STDINT_H

// TODO: Use shorter fixed length integers as stdint in kernel

typedef signed char s8;
typedef unsigned char u8;

typedef signed short s16;
typedef unsigned short u16;

typedef signed int s32;
typedef unsigned int u32;

typedef signed long s64;
typedef unsigned long u64;

#endif