squid: update to 6.13
[openadk.git] / package / cfgfs / src / defs.h
blob5a70d8c14b952243922e4a59a4069c53a5ca462b
1 /* $MirOS: contrib/hosted/fwcf/defs.h,v 1.7 2007/03/13 18:28:20 tg Exp $ */
3 /*
4 * This file is part of the FreeWRT project. FreeWRT is copyrighted
5 * material, please see the LICENCE file in the top-level directory
6 * or at http://www.freewrt.org/licence for details.
7 */
9 #ifndef DEFS_H
10 #define DEFS_H
12 #define DEF_FLASHBLOCK 65536 /* size of a flash block */
13 #define DEF_FLASHPART 16777215 /* max size of the partition */
15 #define FWCF_VER 0x01 /* major version of spec used */
17 #ifndef __RCSID
18 #define __RCSID(x) static const char __rcsid[] __attribute__((used)) = (x)
19 #endif
21 #ifndef __dead
22 #define __dead __attribute__((noreturn))
23 #endif
25 #include "replace.h" /* strlcpy/strlcat replacement for glibc */
27 #endif