osdep.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __OSDEP_H__
  2. #define __OSDEP_H__
  3. /*
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License as
  6.  * published by the Free Software Foundation; either version 2, or (at
  7.  * your option) any later version.
  8.  */
  9. #if defined(__linux__) || defined(__FreeBSD__) || defined (__MIPSEB__)
  10. #define ETHERBOOT32
  11. #define ntohl(x) (x)
  12. #define htonl(x) (x)
  13. #define ntohs(x) (x)
  14. #define htons(x) (x)
  15. #endif
  16. /* ANSI prototyping macro */
  17. #ifdef __STDC__
  18. #define P(x) x
  19. #else
  20. #define P(x) ()
  21. #endif
  22. #endif
  23. /*
  24.  * Local variables:
  25.  *  c-basic-offset: 8
  26.  * End:
  27.  */