blob: 33a31c8488a4cfaea890648fdf93faeabe7c58cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* $MirOS: contrib/hosted/fwcf/defs.h,v 1.7 2007/03/13 18:28:20 tg Exp $ */
/*
* This file is part of the FreeWRT project. FreeWRT is copyrighted
* material, please see the LICENCE file in the top-level directory
* or at http://www.freewrt.org/licence for details.
*/
#ifndef DEFS_H
#define DEFS_H
#define DEF_FLASHBLOCK 65536 /* size of a flash block */
#define DEF_FLASHPART 131072 /* size of the flash partition */
#define FWCF_VER 0x01 /* major version of spec used */
#ifndef __RCSID
#define __RCSID(x) static const char __rcsid[] __attribute__((used)) = (x)
#endif
#ifndef BSD
#define uint8_t u_int8_t
#define uint16_t u_int16_t
#define uint32_t u_int32_t
#define uint64_t u_int64_t
#endif
#ifndef __dead
#define __dead __attribute__((noreturn))
#endif
#include "replace.h" /* strlcpy/strlcat replacement for glibc */
#endif
|