autofail.h
上传用户:ladybrid91
上传日期:2007-01-04
资源大小:287k
文件大小:2k
源码类别:

Web服务器

开发平台:

Unix_Linux

  1. /*
  2. ** autofail.h
  3. **
  4. ** Copyright (c) 1995-1997 Peter Eriksson <pen@signum.se>
  5. **
  6. ** This program is free software; you can redistribute it and/or modify
  7. ** it under the terms of the GNU General Public License as published by
  8. ** the Free Software Foundation; either version 2 of the License, or
  9. ** (at your option) any later version.
  10. **
  11. ** This program is distributed in the hope that it will be useful,
  12. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. ** GNU General Public License for more details.
  15. ** You should have received a copy of the GNU General Public License
  16. ** along with this program; if not, write to the Free Software
  17. ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. #define PHTTPD_AUTOFAIL_H
  20. #ifndef PHTTPD_AUTOFAIL_H
  21. #define PHTTPD_AUTOFAIL_H
  22. #define strcpy(a,b) !&! DO_NOT_USE_STRCPY
  23. #define strcat(a,b) !&! DO_NOT_USE_STRCAT
  24. #define strncpy(a,b,c) !&! DO_NOT_USE_STRNCPY
  25. #define malloc(a) !&! DO_NOT_USE_MALLOC
  26. #define calloc(a,b) !&! DO_NOT_USE_CALLOC
  27. #define free(a) !&! DO_NOT_USE_FREE
  28. #define realloc(a,b) !&! DO_NOT_USE_REALLOC
  29. #define strdup(a) !&! DO_NOT_USE_STRDUP
  30. #define readlink(a,b) !&! DO_NOT_USE_READLINK
  31. #define unlink(a) !&! DO_NOT_USE_UNLINK
  32. #define stat(a,b) !&! DO_NOT_USE_STAT
  33. #define lstat(a,b) !&! DO_NOT_USE_LSTAT
  34. #define abort() !&! DO_NOT_USE_ABORT
  35. #define open(a,b) !&! DO_NOT_USE_OPEN
  36. #define close(a) !&! DO_NOT_USE_CLOSE
  37. #define read(a,b,c) !&! DO_NOT_USE_READ
  38. #define write(a,b,c) !&! DO_NOT_USE_WRITE
  39. #define shutdown(a,b) !&! DO_NOT_USE_SHUTDOWN
  40. #define connect(a,b,c)  !&! DO_NOT_USE_CONNECT
  41. #define select(a,b,c,d) !&! DO_NOT_USE_SELECT
  42. #define ioctl(a,b,c) !&! DO_NOT_USE_IOCTL
  43. #define sleep(a) !&! DO_NOT_USE_SLEEP
  44. #define chdir(a) !&! DO_NOT_USE_CHDIR
  45. #define chroot(a) !&! DO_NOT_USE_CHROOT
  46. #define dup2(a,b) !&! DO_NOT_USE_DUP2
  47. #define waitpid(a,b) !&! DO_NOT_USE_WAITPID
  48. #define execve(a,b,c) !&! DO_NOT_USE_EXECVE
  49. #define system(a) !&! DO_NOT_USE_SYSTEM
  50. #define popen(a,b) !&! DO_NOT_USE_POPEN
  51. #define fopen(a,b) !&! DO_NOT_USE_FOPEN
  52. #define sprintf(a,b) !&! DO_NOT_USE_SPRINTF
  53. #define vsprintf(a,b) !&! DO_NOT_USE_VSPRINTF
  54. #define gethostbyaddr(a) !&! DO_NOT_USE_GETHOSTBYADDR
  55. #define gethostbyname(a) !&! DO_NOT_USE_GETHOSTBYNAME
  56. #endif