OSDN Git Service

791a6f899a0ed0f937b279bf5530c84256fe8357
[pf3gnuchains/gcc-fork.git] / libgfortran / libgfortran.h
1 /* Common declarations for all of libgfor.
2    Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
3    Contributed by Paul Brook <paul@nowt.org>, and
4    Andy Vaught <andy@xena.eas.asu.edu>
5
6 This file is part of the GNU Fortran 95 runtime library (libgfortran).
7
8 Libgfortran is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
12
13 Libgfortran is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public
19 License along with libgfor; see the file COPYING.LIB.  If not,
20 write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA.  */
22
23 /* As a special exception, if you link this library with other files,
24    some of which are compiled with GCC, to produce an executable,
25    this library does not by itself cause the resulting executable
26    to be covered by the GNU General Public License.
27    This exception does not however invalidate any other reasons why
28    the executable file might be covered by the GNU General Public License.  */
29
30
31 #ifndef LIBGFOR_H
32 #define LIBGFOR_H
33
34 #include <math.h>
35 #include <stddef.h>
36
37 #ifndef M_PI
38 #define M_PI 3.14159265358979323846264338327
39 #endif
40
41 #if HAVE_COMPLEX_H
42 # include <complex.h>
43 #else
44 #define complex __complex__
45 #endif
46
47 #include "config.h"
48 #include "c99_protos.h"
49
50 #if HAVE_IEEEFP_H
51 #include <ieeefp.h>
52 #endif
53
54 #if HAVE_STDINT_H
55 #include <stdint.h>
56 #endif
57
58 #if HAVE_INTTYPES_H
59 #include <inttypes.h>
60 #endif
61
62 #if !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H) && defined(TARGET_ILP32)
63 typedef char int8_t;
64 typedef short int16_t;
65 typedef int int32_t;
66 typedef long long int64_t;
67 typedef unsigned char uint8_t;
68 typedef unsigned short uint16_t;
69 typedef unsigned int uint32_t;
70 typedef unsigned long long uint64_t;
71 #endif
72
73 #if HAVE_SYS_TYPES_H
74 #include <sys/types.h>
75 #endif
76 typedef off_t gfc_offset;
77
78 #ifndef NULL
79 #define NULL (void *) 0
80 #endif
81
82 #ifndef __GNUC__
83 #define __attribute__(x)
84 #endif
85
86 /* For a library, a standard prefix is a requirement in order to partition
87    the namespace.  IPREFIX is for symbols intended to be internal to the
88    library.  */
89 #define PREFIX(x)       _gfortran_ ## x
90 #define IPREFIX(x)      _gfortrani_ ## x
91
92 /* Magic to rename a symbol at the compiler level.  You continue to refer
93    to the symbol as OLD in the source, but it'll be named NEW in the asm.  */
94 #define sym_rename(old, new) sym_rename1(old, __USER_LABEL_PREFIX__, new)
95 #define sym_rename1(old, ulp, new) sym_rename2(old, ulp, new)
96 #define sym_rename2(old, ulp, new) extern __typeof(old) old __asm__(#ulp #new)
97
98 /* There are several classifications of routines:
99
100      (1) Symbols used only within the library,
101      (2) Symbols to be exported from the library,
102      (3) Symbols to be exported from the library, but
103          also used inside the library.
104
105    By telling the compiler about these different classifications we can
106    tightly control the interface seen by the user, and get better code
107    from the compiler at the same time.
108
109    One of the following should be used immediately after the declaration
110    of each symbol:
111
112      internal_proto     Marks a symbol used only within the library,
113                         and adds IPREFIX to the assembly-level symbol
114                         name.  The later is important for maintaining
115                         the namespace partition for the static library.
116
117      export_proto       Marks a symbol to be exported, and adds PREFIX
118                         to the assembly-level symbol name.
119
120      export_proto_np    Marks a symbol to be exported without adding PREFIX.
121
122      iexport_proto      Marks a function to be exported, but with the 
123                         understanding that it can be used inside as well.
124
125      iexport_data_proto Similarly, marks a data symbol to be exported.
126                         Unfortunately, some systems can't play the hidden
127                         symbol renaming trick on data symbols, thanks to
128                         the horribleness of COPY relocations.
129
130    If iexport_proto or iexport_data_proto is used, you must also use
131    iexport or iexport_data after the *definition* of the symbol.  */
132
133 #if defined(HAVE_ATTRIBUTE_VISIBILITY)
134 # define internal_proto(x) \
135         sym_rename(x, IPREFIX (x)) __attribute__((__visibility__("hidden")))
136 #else
137 # define internal_proto(x)      sym_rename(x, IPREFIX(x))
138 #endif
139
140 #if defined(HAVE_ATTRIBUTE_VISIBILITY) && defined(HAVE_ATTRIBUTE_ALIAS)
141 # define export_proto(x)        sym_rename(x, PREFIX(x))
142 # define export_proto_np(x)     extern char swallow_semicolon
143 # define iexport_proto(x)       internal_proto(x)
144 # define iexport(x)             iexport1(x, __USER_LABEL_PREFIX__, IPREFIX(x))
145 # define iexport1(x,p,y)        iexport2(x,p,y)
146 # define iexport2(x,p,y) \
147         extern __typeof(x) PREFIX(x) __attribute__((__alias__(#p #y)))
148 /* ??? We're not currently building a dll, and it's wrong to add dllexport
149    to objects going into a static library archive.  */
150 #elif 0 && defined(HAVE_ATTRIBUTE_DLLEXPORT)
151 # define export_proto_np(x)     extern __typeof(x) x __attribute__((dllexport))
152 # define export_proto(x)    sym_rename(x, PREFIX(x)) __attribute__((dllexport))
153 # define iexport_proto(x)       export_proto(x)
154 # define iexport(x)             extern char swallow_semicolon
155 #else
156 # define export_proto(x)        sym_rename(x, PREFIX(x))
157 # define export_proto_np(x)     extern char swallow_semicolon
158 # define iexport_proto(x)       export_proto(x)
159 # define iexport(x)             extern char swallow_semicolon
160 #endif
161
162 /* TODO: detect the case when we *can* hide the symbol.  */
163 #define iexport_data_proto(x)   export_proto(x)
164 #define iexport_data(x)         extern char swallow_semicolon
165
166 /* The only reliable way to get the offset of a field in a struct
167    in a system independent way is via this macro.  */
168 #ifndef offsetof
169 #define offsetof(TYPE, MEMBER)  ((size_t) &((TYPE *) 0)->MEMBER)
170 #endif
171
172 /* The isfinite macro is only available with C99, but some non-C99
173    systems still provide fpclassify, and there is a `finite' function
174    in BSD.
175
176    Also, isfinite is broken on Cygwin.
177
178    When isfinite is not available, try to use one of the
179    alternatives, or bail out.  */
180
181 #if defined(HAVE_BROKEN_ISFINITE) || defined(__CYGWIN__)
182 #undef isfinite
183 #endif
184
185 #if defined(HAVE_BROKEN_ISNAN)
186 #undef isnan
187 #endif
188
189 #if defined(HAVE_BROKEN_FPCLASSIFY)
190 #undef fpclassify
191 #endif
192
193 #if !defined(isfinite)
194 #if !defined(fpclassify)
195 #define isfinite(x) ((x) - (x) == 0)
196 #else
197 #define isfinite(x) (fpclassify(x) != FP_NAN && fpclassify(x) != FP_INFINITE)
198 #endif /* !defined(fpclassify) */
199 #endif /* !defined(isfinite)  */
200
201 #if !defined(isnan)
202 #if !defined(fpclassify)
203 #define isnan(x) ((x) != (x))
204 #else
205 #define isnan(x) (fpclassify(x) == FP_NAN)
206 #endif /* !defined(fpclassify) */
207 #endif /* !defined(isfinite)  */
208
209 /* TODO: find the C99 version of these an move into above ifdef.  */
210 #define REALPART(z) (__real__(z))
211 #define IMAGPART(z) (__imag__(z))
212 #define COMPLEX_ASSIGN(z_, r_, i_) {__real__(z_) = (r_); __imag__(z_) = (i_);}
213
214 #include "kinds.h"
215
216 /* The following two definitions must be consistent with the types used
217    by the compiler.  */
218 /* The type used of array indices, amongst other things.  */
219 typedef ssize_t index_type;
220 /* The type used for the lengths of character variables.  */
221 typedef GFC_INTEGER_4 gfc_charlen_type;
222
223 /* This will be 0 on little-endian machines and one on big-endian machines.  */
224 extern int l8_to_l4_offset;
225 internal_proto(l8_to_l4_offset);
226
227 #define GFOR_POINTER_L8_TO_L4(p8) \
228   (l8_to_l4_offset + (GFC_LOGICAL_4 *)(p8))
229
230 #define GFC_INTEGER_4_HUGE \
231   (GFC_INTEGER_4)((((GFC_UINTEGER_4)1) << 31) - 1)
232 #define GFC_INTEGER_8_HUGE \
233   (GFC_INTEGER_8)((((GFC_UINTEGER_8)1) << 63) - 1)
234 #ifdef HAVE_GFC_INTEGER_16
235 #define GFC_INTEGER_16_HUGE \
236   (GFC_INTEGER_16)((((GFC_UINTEGER_16)1) << 127) - 1)
237 #endif
238
239 #define GFC_REAL_4_HUGE FLT_MAX
240 #define GFC_REAL_8_HUGE DBL_MAX
241 #ifdef HAVE_GFC_REAL_10
242 #define GFC_REAL_10_HUGE LDBL_MAX
243 #endif
244 #ifdef HAVE_GFC_REAL_16
245 #define GFC_REAL_16_HUGE LDBL_MAX
246 #endif
247
248 #ifndef GFC_MAX_DIMENSIONS
249 #define GFC_MAX_DIMENSIONS 7
250 #endif
251
252 typedef struct descriptor_dimension
253 {
254   index_type stride;
255   index_type lbound;
256   index_type ubound;
257 }
258 descriptor_dimension;
259
260 #define GFC_ARRAY_DESCRIPTOR(r, type) \
261 struct {\
262   type *data;\
263   size_t offset;\
264   index_type dtype;\
265   descriptor_dimension dim[r];\
266 }
267
268 /* Commonly used array descriptor types.  */
269 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, void) gfc_array_void;
270 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, char) gfc_array_char;
271 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_4) gfc_array_i4;
272 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_8) gfc_array_i8;
273 #ifdef HAVE_GFC_INTEGER_16
274 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_INTEGER_16) gfc_array_i16;
275 #endif
276 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_4) gfc_array_r4;
277 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_8) gfc_array_r8;
278 #ifdef HAVE_GFC_REAL_10
279 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_10) gfc_array_r10;
280 #endif
281 #ifdef HAVE_GFC_REAL_16
282 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_REAL_16) gfc_array_r16;
283 #endif
284 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_4) gfc_array_c4;
285 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_8) gfc_array_c8;
286 #ifdef HAVE_GFC_COMPLEX_10
287 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_10) gfc_array_c10;
288 #endif
289 #ifdef HAVE_GFC_COMPLEX_16
290 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_COMPLEX_16) gfc_array_c16;
291 #endif
292 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_4) gfc_array_l4;
293 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_8) gfc_array_l8;
294 #ifdef HAVE_GFC_LOGICAL_16
295 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, GFC_LOGICAL_16) gfc_array_l16;
296 #endif
297
298 #define GFC_DTYPE_RANK_MASK 0x07
299 #define GFC_DTYPE_TYPE_SHIFT 3
300 #define GFC_DTYPE_TYPE_MASK 0x38
301 #define GFC_DTYPE_SIZE_SHIFT 6
302
303 enum
304 {
305   GFC_DTYPE_UNKNOWN = 0,
306   GFC_DTYPE_INTEGER,
307   /* TODO: recognize logical types.  */
308   GFC_DTYPE_LOGICAL,
309   GFC_DTYPE_REAL,
310   GFC_DTYPE_COMPLEX,
311   GFC_DTYPE_DERIVED,
312   GFC_DTYPE_CHARACTER
313 };
314
315 #define GFC_DESCRIPTOR_RANK(desc) ((desc)->dtype & GFC_DTYPE_RANK_MASK)
316 #define GFC_DESCRIPTOR_TYPE(desc) (((desc)->dtype & GFC_DTYPE_TYPE_MASK) \
317                                    >> GFC_DTYPE_TYPE_SHIFT)
318 #define GFC_DESCRIPTOR_SIZE(desc) ((desc)->dtype >> GFC_DTYPE_SIZE_SHIFT)
319 #define GFC_DESCRIPTOR_DATA(desc) ((desc)->data)
320 #define GFC_DESCRIPTOR_DTYPE(desc) ((desc)->dtype)
321
322 /* Runtime library include.  */
323 #define stringize(x) expand_macro(x)
324 #define expand_macro(x) # x
325
326 /* Runtime options structure.  */
327
328 typedef struct
329 {
330   int stdin_unit, stdout_unit, stderr_unit, optional_plus;
331   int allocate_init_flag, allocate_init_value;
332   int locus;
333
334   int separator_len;
335   const char *separator;
336
337   int mem_check;
338   int use_stderr, all_unbuffered, default_recl;
339
340   int fpu_round, fpu_precision, fpe;
341
342   int sighup, sigint;
343 }
344 options_t;
345
346 extern options_t options;
347 internal_proto(options);
348
349
350 /* Compile-time options that will influence the library.  */
351
352 typedef struct
353 {
354   int warn_std;
355   int allow_std;
356 }
357 compile_options_t;
358
359 extern compile_options_t compile_options;
360 internal_proto(compile_options);
361
362 extern void init_compile_options (void);
363 internal_proto(init_compile_options);
364
365
366 /* Structure for statement options.  */
367
368 typedef struct
369 {
370   const char *name;
371   int value;
372 }
373 st_option;
374
375 /* Runtime errors.  The EOR and EOF errors are required to be negative.  */
376
377 typedef enum
378 {
379   ERROR_FIRST = -3,             /* Marker for the first error.  */
380   ERROR_EOR = -2,
381   ERROR_END = -1,
382   ERROR_OK = 0,                 /* Indicates success, must be zero.  */
383   ERROR_OS,                     /* Operating system error, more info in errno.  */
384   ERROR_OPTION_CONFLICT,
385   ERROR_BAD_OPTION,
386   ERROR_MISSING_OPTION,
387   ERROR_ALREADY_OPEN,
388   ERROR_BAD_UNIT,
389   ERROR_FORMAT,
390   ERROR_BAD_ACTION,
391   ERROR_ENDFILE,
392   ERROR_BAD_US,
393   ERROR_READ_VALUE,
394   ERROR_READ_OVERFLOW,
395   ERROR_LAST                    /* Not a real error, the last error # + 1.  */
396 }
397 error_codes;
398
399
400 /* Flags to specify which standard/extension contains a feature.
401    Keep them in sync with their counterparts in gcc/fortran/gfortran.h.  */
402 #define GFC_STD_LEGACY          (1<<6) /* Backward compatibility.  */
403 #define GFC_STD_GNU             (1<<5)    /* GNU Fortran extension.  */
404 #define GFC_STD_F2003           (1<<4)    /* New in F2003.  */
405 /* Note that no features were obsoleted nor deleted in F2003.  */
406 #define GFC_STD_F95             (1<<3)    /* New in F95.  */
407 #define GFC_STD_F95_DEL         (1<<2)    /* Deleted in F95.  */
408 #define GFC_STD_F95_OBS         (1<<1)    /* Obsoleted in F95.  */
409 #define GFC_STD_F77             (1<<0)    /* Up to and including F77.  */
410
411 /* Bitmasks for the various FPE that can be enabled.
412    Keep them in sync with their counterparts in gcc/fortran/gfortran.h.  */
413 #define GFC_FPE_INVALID    (1<<0)
414 #define GFC_FPE_DENORMAL   (1<<1)
415 #define GFC_FPE_ZERO       (1<<2)
416 #define GFC_FPE_OVERFLOW   (1<<3)
417 #define GFC_FPE_UNDERFLOW  (1<<4)
418 #define GFC_FPE_PRECISION  (1<<5)
419
420 /* The filename and line number don't go inside the globals structure.
421    They are set by the rest of the program and must be linked to.  */
422
423 /* Location of the current library call (optional).  */
424 extern unsigned line;
425 iexport_data_proto(line);
426
427 extern char *filename;
428 iexport_data_proto(filename);
429
430 /* Avoid conflicting prototypes of alloca() in system headers by using 
431    GCC's builtin alloca().  */
432 #define gfc_alloca(x)  __builtin_alloca(x)
433
434
435 /* main.c */
436
437 extern void stupid_function_name_for_static_linking (void);
438 internal_proto(stupid_function_name_for_static_linking);
439
440 extern void library_start (void);
441 internal_proto(library_start);
442
443 extern void library_end (void);
444 internal_proto(library_end);
445
446 extern void set_args (int, char **);
447 export_proto(set_args);
448
449 extern void get_args (int *, char ***);
450 internal_proto(get_args);
451
452 /* error.c */
453
454 #define GFC_ITOA_BUF_SIZE (sizeof (GFC_INTEGER_LARGEST) * 3 + 2)
455 #define GFC_XTOA_BUF_SIZE (sizeof (GFC_UINTEGER_LARGEST) * 2 + 1)
456 #define GFC_OTOA_BUF_SIZE (sizeof (GFC_INTEGER_LARGEST) * 3 + 1)
457 #define GFC_BTOA_BUF_SIZE (sizeof (GFC_INTEGER_LARGEST) * 8 + 1)
458
459 extern const char *gfc_itoa (GFC_INTEGER_LARGEST, char *, size_t);
460 internal_proto(gfc_itoa);
461
462 extern const char *xtoa (GFC_UINTEGER_LARGEST, char *, size_t);
463 internal_proto(xtoa);
464
465 extern void os_error (const char *) __attribute__ ((noreturn));
466 internal_proto(os_error);
467
468 extern void show_locus (void);
469 internal_proto(show_locus);
470
471 extern void runtime_error (const char *) __attribute__ ((noreturn));
472 iexport_proto(runtime_error);
473
474 extern void internal_error (const char *) __attribute__ ((noreturn));
475 internal_proto(internal_error);
476
477 extern const char *get_oserror (void);
478 internal_proto(get_oserror);
479
480 extern void sys_exit (int) __attribute__ ((noreturn));
481 internal_proto(sys_exit);
482
483 extern int st_printf (const char *, ...)
484   __attribute__ ((format (printf, 1, 2)));
485 internal_proto(st_printf);
486
487 extern void st_sprintf (char *, const char *, ...)
488   __attribute__ ((format (printf, 2, 3)));
489 internal_proto(st_sprintf);
490
491 extern const char *translate_error (int);
492 internal_proto(translate_error);
493
494 extern void generate_error (int, const char *);
495 internal_proto(generate_error);
496
497 /* fpu.c */
498
499 extern void set_fpu (void);
500 internal_proto(set_fpu);
501
502 /* memory.c */
503
504 extern void *get_mem (size_t) __attribute__ ((malloc));
505 internal_proto(get_mem);
506
507 extern void free_mem (void *);
508 internal_proto(free_mem);
509
510 extern void *internal_malloc_size (size_t);
511 internal_proto(internal_malloc_size);
512
513 extern void internal_free (void *);
514 iexport_proto(internal_free);
515
516 /* environ.c */
517
518 extern int check_buffered (int);
519 internal_proto(check_buffered);
520
521 extern void init_variables (void);
522 internal_proto(init_variables);
523
524 extern void show_variables (void);
525 internal_proto(show_variables);
526
527 /* string.c */
528
529 extern int find_option (const char *, int, const st_option *, const char *);
530 internal_proto(find_option);
531
532 extern int fstrlen (const char *, int);
533 internal_proto(fstrlen);
534
535 extern void fstrcpy (char *, int, const char *, int);
536 internal_proto(fstrcpy);
537
538 extern void cf_strcpy (char *, int, const char *);
539 internal_proto(cf_strcpy);
540
541 /* io.c */
542
543 extern void init_units (void);
544 internal_proto(init_units);
545
546 extern void close_units (void);
547 internal_proto(close_units);
548
549 /* stop.c */
550
551 extern void stop_numeric (GFC_INTEGER_4);
552 iexport_proto(stop_numeric);
553
554 /* reshape_packed.c */
555
556 extern void reshape_packed (char *, index_type, const char *, index_type,
557                             const char *, index_type);
558 internal_proto(reshape_packed);
559
560 /* Repacking functions.  */
561
562 /* ??? These eight aren't currently used by the compiler, though we
563    certainly could do so.  */
564 GFC_INTEGER_4 *internal_pack_4 (gfc_array_i4 *);
565 internal_proto(internal_pack_4);
566
567 GFC_INTEGER_8 *internal_pack_8 (gfc_array_i8 *);
568 internal_proto(internal_pack_8);
569
570 GFC_COMPLEX_4 *internal_pack_c4 (gfc_array_c4 *);
571 internal_proto(internal_pack_c4);
572
573 GFC_COMPLEX_8 *internal_pack_c8 (gfc_array_c8 *);
574 internal_proto(internal_pack_c8);
575
576 extern void internal_unpack_4 (gfc_array_i4 *, const GFC_INTEGER_4 *);
577 internal_proto(internal_unpack_4);
578
579 extern void internal_unpack_8 (gfc_array_i8 *, const GFC_INTEGER_8 *);
580 internal_proto(internal_unpack_8);
581
582 extern void internal_unpack_c4 (gfc_array_c4 *, const GFC_COMPLEX_4 *);
583 internal_proto(internal_unpack_c4);
584
585 extern void internal_unpack_c8 (gfc_array_c8 *, const GFC_COMPLEX_8 *);
586 internal_proto(internal_unpack_c8);
587
588 /* string_intrinsics.c */
589
590 extern GFC_INTEGER_4 compare_string (GFC_INTEGER_4, const char *,
591                                      GFC_INTEGER_4, const char *);
592 iexport_proto(compare_string);
593
594 /* random.c */
595
596 extern void random_seed (GFC_INTEGER_4 * size, gfc_array_i4 * put,
597                          gfc_array_i4 * get);
598 iexport_proto(random_seed);
599
600 /* normalize.c */
601
602 extern GFC_REAL_4 normalize_r4_i4 (GFC_UINTEGER_4, GFC_UINTEGER_4);
603 internal_proto(normalize_r4_i4);
604
605 extern GFC_REAL_8 normalize_r8_i8 (GFC_UINTEGER_8, GFC_UINTEGER_8);
606 internal_proto(normalize_r8_i8);
607
608 /* size.c */
609
610 typedef GFC_ARRAY_DESCRIPTOR (GFC_MAX_DIMENSIONS, void) array_t;
611
612 extern index_type size0 (const array_t * array); 
613 iexport_proto(size0);
614
615 #endif  /* LIBGFOR_H  */