home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gxxinc.lzh / GXXINC / STD.H < prev    next >
C/C++ Source or Header  |  1991-06-23  |  2KB  |  80 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2. /* 
  3. Copyright (C) 1988 Free Software Foundation
  4.     written by Doug Lea (dl@rocky.oswego.edu)
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY.  No author or distributor
  10. accepts responsibility to anyone for the consequences of using it
  11. or for whether it serves any particular purpose or works at all,
  12. unless he says so in writing.  Refer to the GNU CC General Public
  13. License for full details.
  14.  
  15. Everyone is granted permission to copy, modify and redistribute
  16. GNU CC, but only under the conditions described in the
  17. GNU CC General Public License.   A copy of this license is
  18. supposed to have been given to you along with GNU CC so you
  19. can know your rights and responsibilities.  It should be in a
  20. file named COPYING.  Among other things, the copyright notice
  21. and this notice must be preserved on all copies.  
  22. */
  23.  
  24.  
  25. #ifndef _std_h
  26. #ifdef __GNUG__
  27. #pragma once
  28. #pragma interface
  29. #endif
  30. #define _std_h 1
  31.  
  32. #include <stddef.h>
  33. #include <stdio.h>
  34. #include <string.h>
  35. #include <memory.h>
  36. #include <process.h>
  37. #include <unistd.h>
  38. #include <stdlib.h>
  39. #include <signal.h>
  40. #include <termcap.h>
  41.  
  42. extern "C" {
  43.  
  44. int       execl(const char*, const char *, ...);
  45. int       execle(const char*, const char *, ...);
  46. int       execlp(const char*, const char*, ...);
  47. int       exect(const char*,  const char**,  char**);
  48. int       execv(const char*,  const char**);
  49. int       execve(const char*, const char**, char**);
  50. int       execvp(const char*,  const char**);
  51. void volatile exit(int);
  52.  
  53. int       fork(void);
  54.  
  55. int       isatty(int);
  56. void      swab(void*, void*, int);
  57. int       symlink(const char*, const char*);
  58. int       system(const char*);
  59.  
  60. }
  61. extern char**   environ;
  62. extern volatile int errno;
  63. extern char*    sys_errlist[];
  64. extern int      sys_nerr;                  
  65. extern char*    optarg;
  66. extern int      opterr;
  67. extern int      optind;
  68.  
  69.  
  70. // extern "C" void* alloca(long unsigned int);
  71. #ifndef alloca
  72. #define alloca  __builtin_alloca
  73. #endif
  74. #if !(defined(__GNUG__) || defined(__GNUC__))
  75. extern "C" void *__builtin_alloca (long unsigned int);
  76. #endif
  77.  
  78.  
  79. #endif 
  80.