More source headers harmonization

* fix missing #ifdefs
* remove spaces and page feeds
* follow same set of rules everywhere, with cdio includes coming
  after standard C includes.
This commit is contained in:
Pete Batard
2012-03-05 17:58:56 +00:00
parent 9b0a90d4ae
commit 0074e54f97
25 changed files with 149 additions and 130 deletions

View File

@@ -23,31 +23,25 @@
#endif
#ifdef HAVE_STDIO_H
# include <stdio.h>
#include <stdio.h>
#endif
#ifdef HAVE_LIMITS_H
# include <limits.h>
#include <limits.h>
#endif
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#include <stdlib.h>
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#include <string.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#include <unistd.h>
#endif
#ifdef HAVE_ERRNO_H
# include <errno.h>
#include <errno.h>
#endif
#ifdef HAVE_WINDOWS_H
# include <windows.h>
#include <windows.h>
#endif
#if !defined(HAVE_SLEEP) && defined(_WIN32)
#include <windows.h>