Skip to content

Commit

Permalink
Remove -cc gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
dmtrKovalenko committed Aug 23, 2024
1 parent f70cc66 commit 552d409
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion io/tiff/ReadTiff.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#define CAML_NAME_SPACE
#include <signal.h>
#include <stdio.h>

#include <caml/alloc.h>
Expand All @@ -10,6 +9,11 @@

#include <tiffio.h>

#ifdef _WIN32
#include <setjmpex.h>
#include <signal.h>
#endif

CAMLprim value read_tiff_file_to_tuple(value file) {
CAMLparam1(file);
CAMLlocal2(res, ba);
Expand Down

0 comments on commit 552d409

Please sign in to comment.