Skip to content

Commit

Permalink
Fixes for #3: Added missing headers now that config.h is gone.
Browse files Browse the repository at this point in the history
  • Loading branch information
perlun committed Aug 24, 2015
1 parent 9ee092a commit 07984bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions servers/network/ipv4/arp.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#pragma once

#include <ipv4/ipv4.h>
#include <system/system.h>

typedef struct
Expand Down
3 changes: 3 additions & 0 deletions servers/network/ipv4/dhcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
// © Copyright 2007 chaos development
// © Copyright 2015 chaos development

#include <memory/memory.h>
#include <random/random.h>

#include "ipv4.h"
#include "udp.h"
#include "dhcp.h"
Expand Down
2 changes: 2 additions & 0 deletions servers/network/ipv4/forward.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
// © Copyright 2000 chaos development
// © Copyright 2015 chaos development

#include <memory/memory.h>

#include "arp.h"
#include "forward.h"
#include "ipv4.h"
Expand Down

0 comments on commit 07984bb

Please sign in to comment.