From 04f1141345396e96f26ce2ec90e4904b1222cefd Mon Sep 17 00:00:00 2001 From: Sean Wilson Date: Tue, 16 Jan 2018 11:02:45 -0500 Subject: [PATCH] Add TI-RTOS compat header --- compat/minmea_compat_ti-rtos.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 compat/minmea_compat_ti-rtos.h diff --git a/compat/minmea_compat_ti-rtos.h b/compat/minmea_compat_ti-rtos.h new file mode 100644 index 0000000..b1deb97 --- /dev/null +++ b/compat/minmea_compat_ti-rtos.h @@ -0,0 +1,16 @@ +/* + * Copyright © 2017 Kosma Moczek + * This program is free software. It comes without any warranty, to the extent + * permitted by applicable law. You can redistribute it and/or modify it under + * the terms of the Do What The Fuck You Want To Public License, Version 2, as + * published by Sam Hocevar. See the COPYING file for more details. + */ + +#if defined(__TI_ARM__) + +// timespec definition +#include + +#endif + +/* vim: set ts=4 sw=4 et: */