summaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorPete Batard <pbatard@gmail.com>2012-03-05 17:58:56 +0000
committerPete Batard <pbatard@gmail.com>2012-03-05 17:58:56 +0000
commit0074e54f970ee849e9c8c300bf6b48ba91891edf (patch)
treed4f29081cc9f8fe515fe32bd12210fff220f39ec /example
parent9b0a90d4ae3c764c4c21572d6e0da2869a61bfe1 (diff)
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.
Diffstat (limited to 'example')
-rw-r--r--example/cdchange.c20
1 files changed, 7 insertions, 13 deletions
diff --git a/example/cdchange.c b/example/cdchange.c
index 091900e3..240263b5 100644
--- a/example/cdchange.c
+++ b/example/cdchange.c
@@ -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>