Add missing header guards

This commit is contained in:
derselbst 2019-11-03 08:41:20 +01:00
parent fdbd13e77c
commit accae4ef82
2 changed files with 10 additions and 1 deletions

View file

@ -17,6 +17,9 @@
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA
*/
#ifndef _FLUID_LASH_H
#define _FLUID_LASH_H
#include "config.h"
#if defined(HAVE_LASH)
@ -40,4 +43,5 @@ FLUIDSYNTH_API fluid_lash_args_t *fluid_lash_extract_args(int *pargc, char ***p
FLUIDSYNTH_API int fluid_lash_connect(fluid_lash_args_t *args);
FLUIDSYNTH_API void fluid_lash_create_thread(fluid_synth_t *synth);
#endif /* defined(HAVE_LASH) */
#endif /* defined(HAVE_LASH) */
#endif /* _FLUID_LASH_H */

View file

@ -1,3 +1,7 @@
#ifndef _FLUID_MAKE_TABLES_H
#define _FLUID_MAKE_TABLES_H
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
@ -19,3 +23,4 @@ void emit_array(FILE *fp, const char *tblname, const double *tbl, int size);
/* Emit a matrix of real numbers */
void emit_matrix(FILE *fp, const char *tblname, emit_matrix_cb tbl_cb, int sizeh, int sizel);
#endif