ergodox-firmware/src/lib/data-types.h

23 lines
654 B
C

/* ----------------------------------------------------------------------------
* Common data types
* ----------------------------------------------------------------------------
* Copyright (c) 2012 Ben Blazak <benblazak.dev@gmail.com>
* Released under The MIT License (MIT) (see "license.md")
* Project located at <https://github.com/benblazak/ergodox-firmware>
* ------------------------------------------------------------------------- */
#ifndef DATA_TYPES_h
#define DATA_TYPES_h
#include <stddef.h>
#include <stdint.h>
#include "data-types/linked-list.h"
#define bool _Bool
#define true ((bool)1)
#define false ((bool)0)
#endif