LibRan  0.1
Pseudo-random number distribution generator
config.h
1 /* config.h. Generated from config.h.in by configure. */
2 /* config.h.in. Generated from configure.ac by autoheader. */
3 
13 /*
14  ******************************************************************************
15  Copyright 2019 by R.K. Owen, Ph.D.
16  See LICENSE.LGPL, which must be provided, for details.
17  ******************************************************************************
18  */
19 #ifndef _CONFIG_H_
20 # define _CONFIG_H_
21 # ifdef __cplusplus
22 extern "C" {
23 # endif
24 
25 
26 /* Define to 1 if you have the <inttypes.h> header file. */
27 #define HAVE_INTTYPES_H 1
28 
29 /* Define to 1 if you have the `cunit' library (-lcunit). */
30 #define HAVE_LIBCUNIT 1
31 
32 /* Define to 1 if your system has a GNU libc compatible `malloc' function, and
33  to 0 otherwise. */
34 #define HAVE_MALLOC 1
35 
36 /* Define to 1 if you have the <memory.h> header file. */
37 #define HAVE_MEMORY_H 1
38 
39 /* Define to 1 if you have the <stdint.h> header file. */
40 #define HAVE_STDINT_H 1
41 
42 /* Define to 1 if you have the <stdlib.h> header file. */
43 #define HAVE_STDLIB_H 1
44 
45 /* Define to 1 if you have the <strings.h> header file. */
46 #define HAVE_STRINGS_H 1
47 
48 /* Define to 1 if you have the <string.h> header file. */
49 #define HAVE_STRING_H 1
50 
51 /* Define to 1 if you have the <sys/stat.h> header file. */
52 #define HAVE_SYS_STAT_H 1
53 
54 /* Define to 1 if you have the <sys/types.h> header file. */
55 #define HAVE_SYS_TYPES_H 1
56 
57 /* Define to 1 if you have the <unistd.h> header file. */
58 #define HAVE_UNISTD_H 1
59 
60 /* Name of package */
61 #define PACKAGE "libran"
62 
63 /* Define to the address where bug reports for this package should be sent. */
64 #define PACKAGE_BUGREPORT "rk@owen.sj.ca.us"
65 
66 /* Define to the full name of this package. */
67 #define PACKAGE_NAME "LibRan"
68 
69 /* Define to the full name and version of this package. */
70 #define PACKAGE_STRING "LibRan 0.1"
71 
72 /* Define to the one symbol short name of this package. */
73 #define PACKAGE_TARNAME "libran"
74 
75 /* Define to the home page for this package. */
76 #define PACKAGE_URL ""
77 
78 /* Define to the version of this package. */
79 #define PACKAGE_VERSION "0.1"
80 
81 /* Define to 1 if you have the ANSI C header files. */
82 #define STDC_HEADERS 1
83 
84 /* Version number of package */
85 #define VERSION "0.1"
86 
87 /* Define to rpl_malloc if the replacement function should be used. */
88 /* #undef malloc */
89 
90 
91 # ifdef __cplusplus
92 }
93 # endif
94 #endif /* _CONFIG_H_ */
95