Skip to content

Commit

Permalink
Fix system includes
Browse files Browse the repository at this point in the history
  • Loading branch information
bynect committed Jun 11, 2021
1 parent a7d5d35 commit fe5a4c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bflc/driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

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

#if defined _WIN32 || defined _WIN64
# define WIN32_LEAN_AND_MEAN
Expand Down
2 changes: 1 addition & 1 deletion libbflc/front/brainfuck.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

#ifndef BFLC_FRONT_BRAINFUCK_H
#define BFLC_FRONTBRAINFUCK_H
#define BFLC_FRONT_BRAINFUCK_H

#include "../ir.h"
#include "../error.h"
Expand Down
2 changes: 1 addition & 1 deletion libbflc/mem.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "mem.h"

#include <malloc.h>
#include <stdlib.h>

static void *
mem_alloc(size_t size, void *extra)
Expand Down

0 comments on commit fe5a4c6

Please sign in to comment.