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

20 lines
605 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 <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include "data-types/linked-list.h"
#endif