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
6 changes: 4 additions & 2 deletions src/dynlibs/mgd/mgd.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

#include <gd.h> /* For gd */
#include <gdfontt.h> /* For gd font description files */
#include <gdfontt.h> /* For gd font description files */
#include <gdfonts.h>
#include <gdfontmb.h>
#include <gdfontl.h>
Expand All @@ -22,7 +22,9 @@
/* Moscow ML specific includes: */

#include <alloc.h> /* For alloc_tuple, ... */
#include <mlvalues.h> /* For Val_unit, Long_val, String_val, ... */
#include <mlvalues.h> /* For Val_unit, Long_val, String_val, ... */
#include <fail.h> /* for failwith */
#include <memory.h> /* for modify */

/* Representation of images.

Expand Down
4 changes: 2 additions & 2 deletions src/dynlibs/mmysql/mmysql.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
[email protected] 1999-08-07, 2000-05-30, 2002-07-25 */

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#ifdef WIN32
#include <windows.h>
#include <stdio.h>
#include <string.h>
#endif

/* Access to the camlrunm/Moscow ML runtime data representation: */
Expand Down