Skip to content

Commit

Permalink
Add some missing headers
Browse files Browse the repository at this point in the history
  • Loading branch information
barracuda156 committed Jul 26, 2023
1 parent 13c581a commit 247b201
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
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

0 comments on commit 247b201

Please sign in to comment.