mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-27 21:55:30 -04:00
fix for gcc >=14 and -std=gnu23
This commit is contained in:
parent
795c2fe65a
commit
fd9661bfa1
2 changed files with 6 additions and 6 deletions
|
|
@ -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$ */
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
|
||||
|
||||
extern void lattice_min_difference_();
|
||||
extern void lattice_min_difference_(double *, double *, double *);
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue