fix for gcc >=14 and -std=gnu23

This commit is contained in:
edoapra 2025-02-19 15:12:48 -08:00
parent 795c2fe65a
commit fd9661bfa1
No known key found for this signature in database
GPG key ID: 9E6A0B70826967BA
2 changed files with 6 additions and 6 deletions

View file

@ -10,11 +10,11 @@ typedef struct {
int *list;
} OList_Type;
extern void create_olist();
extern void insert_olist();
extern int index_olist();
extern void destroy_olist();
extern void print_olist();
extern void create_olist(OList_Type*, int);
extern void insert_olist(OList_Type*, int);
extern int index_olist(OList_Type*, int);
extern void destroy_olist(OList_Type*);
extern void print_olist(OList_Type*);
#endif
/* $Id$ */

View file

@ -19,7 +19,7 @@
extern void lattice_min_difference_();
extern void lattice_min_difference_(double *, double *, double *);