diff options
| author | Carson Fleming <[email protected]> | 2026-01-25 16:00:20 -0500 |
|---|---|---|
| committer | Carson Fleming <[email protected]> | 2026-01-25 16:00:20 -0500 |
| commit | b364a39849fc4a6f6837f8558b7520efc24ae96c (patch) | |
| tree | 2f1d3be07c225bd2c29b219df8ec184c256a9e4f /types.h | |
| parent | aecec4204b5830fcb97ab93a56a6a29018519ca2 (diff) | |
| download | safec-b364a39849fc4a6f6837f8558b7520efc24ae96c.tar.gz | |
bring in some library functions and restructure
Diffstat (limited to 'types.h')
| -rw-r--r-- | types.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,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 |
