stdint 0.1.0

C99 stdint types for easier interop
Documentation
#include <stdio.h>
#include <stdint.h>
#include <limits.h>

typedef size_t _size_t;
typedef ssize_t _ssize_t;
typedef intptr_t _intptr_t;
typedef uintptr_t _uintptr_t;

const int64_t _INT64_MIN = INT64_MIN;
const int64_t _INT64_MAX = INT64_MAX;
const uint64_t _UINT64_MAX = UINT64_MAX;

const int_fast64_t _INT_FAST64_MIN = INT_FAST64_MIN;
const int_fast64_t _INT_FAST64_MAX = INT_FAST64_MAX;
const uint_fast64_t _UINT_FAST64_MAX = UINT_FAST64_MAX;

const int_least64_t _INT_LEAST64_MIN = INT_LEAST64_MIN;
const int_least64_t _INT_LEAST64_MAX = INT_LEAST64_MAX;
const uint_least64_t _UINT_LEAST64_MAX = UINT_LEAST64_MAX;

const intmax_t _INTMAX_MIN = INTMAX_MIN;
const intmax_t _INTMAX_MAX = INTMAX_MAX;
const uintmax_t _UINTMAX_MAX = UINTMAX_MAX;