Skip to content

Commit

Permalink
Fix #include directives in src/julia_gc.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbehrends committed May 22, 2018
1 parent df603cb commit 7220356
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/julia_gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
** and gasman.c for two other garbage collector implementations.
**/

#include <src/code.h>
#include <src/funcs.h>
#include <src/gapstate.h>
#include <src/gasman.h>
#include <src/objects.h>
#include <src/plist.h>
#include <src/sysmem.h>
#include <src/system.h>
#include <src/vars.h>
#include "code.h"
#include "funcs.h"
#include "gapstate.h"
#include "gasman.h"
#include "objects.h"
#include "plist.h"
#include "sysmem.h"
#include "system.h"
#include "vars.h"

#include <stdio.h>
#include <stdlib.h>
Expand Down

0 comments on commit 7220356

Please sign in to comment.