From 5709a942a97313afe2679168680f0bf018614f0f Mon Sep 17 00:00:00 2001 From: Beej Jorgensen Date: Thu, 25 Oct 2018 14:55:57 -0700 Subject: [PATCH] fix Cygwin incompatibility --- src/file.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/file.h b/src/file.h index aeea2a186..c74eb1585 100644 --- a/src/file.h +++ b/src/file.h @@ -1,5 +1,5 @@ -#ifndef _FILE_H_ -#define _FILE_H_ +#ifndef _FILELS_H_ // This was just _FILE_H_, but that interfered with Cygwin +#define _FILELS_H_ struct file_data { int size; @@ -9,4 +9,4 @@ struct file_data { extern struct file_data *file_load(char *filename); extern void file_free(struct file_data *filedata); -#endif \ No newline at end of file +#endif