1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2024-08-25 06:31:43 +02:00

add include guard to the trexio_private.h file

This commit is contained in:
q-posev 2021-07-20 12:06:44 +02:00
parent 6f8279ed80
commit ac28110696

View File

@ -77,6 +77,12 @@ typedef int32_t trexio_exit_code;
#include <stdbool.h>
#+end_src
#+begin_src c :tangle trexio_private.h :noweb yes
<<header>>
#ifndef _TREXIO_PRIVATE_H
#define _TREXIO_PRIVATE_H
#+end_src
* Coding conventions
- integer types will be defined using types given in ~stdint.h~
@ -2231,6 +2237,10 @@ contains
#endif
#+end_src
#+begin_src c :tangle trexio_private.h
#endif
#+end_src
#+begin_src f90 :tangle suffix_fortran.f90
end module trexio
#+end_src