tkernel_2/include/basic.h | bare source | permlink (0.03 seconds) |
1: /* 2: *---------------------------------------------------------------------- 3: * T-Kernel 2.0 Software Package 4: * 5: * Copyright 2011 by Ken Sakamura. 6: * This software is distributed under the latest version of T-License 2.x. 7: *---------------------------------------------------------------------- 8: * 9: * Released by T-Engine Forum(http://www.t-engine.org/) at 2011/05/17. 10: * Modified by TRON Forum(http://www.tron.org/) at 2015/06/01. 11: * 12: *---------------------------------------------------------------------- 13: */ 14: 15: /* 16: * @(#)basic.h 17: * 18: * Common basic header 19: * 20: * The header should normally be included at the start of 21: * all source programs. 22: */ 23: 24: #ifndef __BASIC_H__ 25: #define __BASIC_H__ 26: 27: #include <machine.h> 28: #include <stddef.h> 29: #include <typedef.h> 30: 31: #endif /* __BASIC_H__ */