home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / fontutil.6 / fontutil / fontutils-0.6 / include / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-03  |  1.6 KB  |  61 lines

  1. /* config.h: master configuration file, included first by all compilable
  2.    source files (not headers).
  3.  
  4. Copyright (C) 1992 Free Software Foundation, Inc.
  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, or (at your option)
  9. 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.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #ifndef CONFIG_H
  21. #define CONFIG_H
  22.  
  23. /* System dependencies that are figured out by `configure'.  */
  24. #include "c-auto.h"
  25.  
  26. /* Because we use the GNU m/c/realloc from libg++, we always have the ANSI C
  27.    definition for the return type.  */
  28. #define ALLOC_RETURN_TYPE void
  29.  
  30. /* ``Standard'' headers.  */
  31. #include "c-std.h"
  32.  
  33. /* strchr vs. index, memcpy vs. bcopy, etc.  */
  34. #include "c-memstr.h"
  35.  
  36. /* Error numbers and errno declaration.  */
  37. #include "c-errno.h"
  38.  
  39. /* Standard in ANSI C.  */
  40. #include <assert.h>
  41.  
  42. /* Numeric minima and maxima.  */
  43. #include "c-minmax.h"
  44.  
  45. /* The arguments for fseek.  */
  46. #include "c-seek.h"
  47.  
  48. /* Usually declared in <math.h>, but not always.  */
  49. #ifndef M_PI
  50. #define M_PI    3.14159265358979323846
  51. #endif
  52.  
  53.  
  54. /* Macros to discard or keep prototypes.  */
  55. #include "c-proto.h"
  56.  
  57. /* Some definitions of our own.  */
  58. #include "global.h"
  59.  
  60. #endif /* not CONFIG_H */
  61.