home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dmake40.zip / extern.h < prev    next >
C/C++ Source or Header  |  1994-10-23  |  2KB  |  75 lines

  1. /* RCS      -- $Header: /u5/dvadura/src/public/dmake/src/RCS/extern.h,v 1.1 1994/10/06 17:41:20 dvadura Exp $
  2. -- SYNOPSIS -- external declarations for dmake functions.
  3. -- 
  4. -- DESCRIPTION
  5. --    ANSI is a macro that allows the proper handling of ANSI style
  6. --    function declarations.
  7. -- 
  8. -- AUTHOR
  9. --      Dennis Vadura, dvadura@watdragon.uwaterloo.ca
  10. --      CS DEPT, University of Waterloo, Waterloo, Ont., Canada
  11. --
  12. -- COPYRIGHT
  13. --      Copyright (c) 1992,1994 by Dennis Vadura.  All rights reserved.
  14. -- 
  15. --      This program is free software; you can redistribute it and/or
  16. --      modify it under the terms of the GNU General Public License
  17. --      (version 1), as published by the Free Software Foundation, and
  18. --      found in the file 'LICENSE' included with this distribution.
  19. -- 
  20. --      This program is distributed in the hope that it will be useful,
  21. --      but WITHOUT ANY WARRANTY; without even the implied warrant of
  22. --      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23. --      GNU General Public License for more details.
  24. -- 
  25. --      You should have received a copy of the GNU General Public License
  26. --      along with this program;  if not, write to the Free Software
  27. --      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  28. --
  29. -- LOG
  30. --     $Log: extern.h,v $
  31.  * Revision 1.1  1994/10/06  17:41:20  dvadura
  32.  * dmake Release Version 4.0, Initial revision
  33.  *
  34. */
  35.  
  36. #ifndef EXTERN_h
  37. #define EXTERN_h
  38.  
  39. /* Define this for the RS/6000 if it breaks something then we have to put a
  40.  * #ifdef around it. */
  41. #if defined(rs6000)
  42. #define _POSIX_SOURCE
  43. #endif
  44.  
  45. #include <limits.h>
  46. #include <stdio.h>
  47. #include <string.h>
  48. #include <ctype.h>
  49. #include <stdlib.h>
  50. #include <stdarg.h>
  51. #if defined (_MPW)
  52. # include <types.h>
  53. # include <time.h>
  54. #else
  55. # include <sys/types.h>
  56. # include <sys/stat.h>
  57. #endif
  58. #include <signal.h>
  59. #include "itypes.h"
  60. #include "stdmacs.h"
  61. #include "alloc.h"
  62. #include "db.h"
  63. #include "dmake.h"
  64. #include "struct.h"
  65. #include "vextern.h"
  66. #include "public.h"
  67.  
  68. /* Include this last as it invalidates some functions that are defined
  69.  * externally above and turns them into no-ops.  Have to do this after
  70.  * the extern declarations however. */
  71. #include "config.h"
  72. #include "posix.h"
  73.  
  74. #endif
  75.