summaryrefslogtreecommitdiff
path: root/types.h
blob: d1d3ca8eefd11014a28d55d439806bfcfa6b5c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __SAFEC_TYPES_H
#define __SAFEC_TYPES_H

#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>

typedef uintptr_t size_t;
typedef intptr_t ssize_t;

#endif