Skip to content

Commit

Permalink
Cleaned up #include usage a little.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 24, 2009
1 parent 99caed8 commit 1c2e8a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 4 additions & 0 deletions utils/fatelf-utils.c
Expand Up @@ -11,6 +11,10 @@
#define FATELF_UTILS 1
#include "fatelf-utils.h"

#include <errno.h>
#include <unistd.h>
#include <stdarg.h>

const char *unlink_on_xfail = NULL;
static uint8_t zerobuf[4096];

Expand Down
6 changes: 1 addition & 5 deletions utils/fatelf-utils.h
Expand Up @@ -11,12 +11,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <stdarg.h>
#include <fcntl.h>
#include <stdint.h>
#include <assert.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>

Expand Down

0 comments on commit 1c2e8a0

Please sign in to comment.