Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyml_arch.ml.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type t = Windows | Mac | Unix
let os = PLATFORM_NAME

#ifdef WIN_HANDLE_FD
external fd_of_int : int -> Unix.file_descr = "win_handle_fd"
external fd_of_int : int -> Unix.file_descr = "caml_unix_filedescr_of_fd"
#else
external fd_of_int : int -> Unix.file_descr = "%identity"
#endif
1 change: 1 addition & 0 deletions pyml_stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <caml/custom.h>
#include <caml/alloc.h>
#include <caml/intext.h>
#include <caml/unixsupport.h>
#include <string.h>
#include <stdbool.h>
#include <stdio.h>
Expand Down