comparison Bootloader/mchck.h @ 341:66eccdd9ced5

Code cleanup - Changing header file ifndef define to pragma once's - Removed duplicate output_com.h's
author Jacob Alexander <haata@kiibohd.com>
date Sun, 14 Jun 2015 13:56:56 -0700
parents 795cc567b018
children
comparison
equal deleted inserted replaced
340:e8841d3c6db5 341:66eccdd9ced5
1 /* Copyright (c) 2011,2012 Simon Schubert <2@0x2c.org>. 1 /* Copyright (c) 2011,2012 Simon Schubert <2@0x2c.org>.
2 * Modifications by Jacob Alexander 2014=2015 <haata@kiibohd.com> 2 * Modifications by Jacob Alexander 2014-2015 <haata@kiibohd.com>
3 * 3 *
4 * This program is free software: you can redistribute it and/or modify 4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by 5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or 6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version. 7 * (at your option) any later version.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>. 15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 #ifndef __MCHCK_H 18 #pragma once
19 #define __MCHCK_H
20 19
21 // ----- Compiler Includes ----- 20 // ----- Compiler Includes -----
22 21
23 #include <sys/types.h> 22 #include <sys/types.h>
24 #include <sys/cdefs.h> 23 #include <sys/cdefs.h>
43 #include "usbotg.h" 42 #include "usbotg.h"
44 #include "sim.h" 43 #include "sim.h"
45 #include "flash.h" 44 #include "flash.h"
46 #include "usb.h" 45 #include "usb.h"
47 46
48 #endif
49