nonstdio.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.nonstdio.h 1.9 07/25/01 18:13:07 trini
  3.  */
  4. /*
  5.  * Copyright (C) Paul Mackerras 1997.
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License
  9.  * as published by the Free Software Foundation; either version
  10.  * 2 of the License, or (at your option) any later version.
  11.  *
  12.  * This is sort of a catchall for I/O related functions.  Stuff that
  13.  * wouldn't be in 'stdio.h' normally is here, and it's 'nonstdio.h'
  14.  * for a reason.  -- Tom
  15.  */
  16. typedef int FILE;
  17. extern FILE *stdin, *stdout;
  18. #define NULL ((void *)0)
  19. #define EOF (-1)
  20. #define fopen(n, m) NULL
  21. #define fflush(f) 0
  22. #define fclose(f) 0
  23. #define perror(s) printf("%s: no files!n", (s))
  24. extern int getc(void);
  25. extern int printf(const char *format, ...);
  26. extern int strlen(const char *s);
  27. extern int sprintf(char *str, const char *format, ...);
  28. extern int tstc(void);
  29. extern void exit(void);
  30. extern void *memcpy(void *dest, const void *src, int n);
  31. extern void *memmove(void *dest, const void *src, int n);
  32. extern void outb(int port, unsigned char val);
  33. extern void putc(const char c);
  34. extern void puthex(unsigned long val);
  35. extern void puts(const char *);
  36. extern void udelay(long delay);
  37. extern unsigned char inb(int port);