Skip to content

Commit c0e92ef

Browse files
committed
Remove -cc gcc
1 parent f70cc66 commit c0e92ef

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

io/tiff/ReadTiff.c

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#define CAML_NAME_SPACE
2-
#include <signal.h>
32
#include <stdio.h>
43

54
#include <caml/alloc.h>
@@ -10,6 +9,13 @@
109

1110
#include <tiffio.h>
1211

12+
#ifdef _WIN32
13+
#include <excpt.h> // For structured exception handling (SEH)
14+
#include <setjmpex.h>
15+
#include <signal.h>
16+
#include <windows.h>
17+
#endif
18+
1319
CAMLprim value read_tiff_file_to_tuple(value file) {
1420
CAMLparam1(file);
1521
CAMLlocal2(res, ba);
@@ -34,6 +40,7 @@ CAMLprim value read_tiff_file_to_tuple(value file) {
3440
NULL, dims);
3541

3642
uint32_t *buffer = (uint32_t *)Caml_ba_data_val(ba);
43+
3744
if (!(TIFFReadRGBAImageOriented(image, width, height, buffer,
3845
ORIENTATION_TOPLEFT, 0))) {
3946
TIFFClose(image);

0 commit comments

Comments
 (0)