defs.h 725 B

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