Use "" instead of <> for includes, for consistency. Also remove unuseful includes...
authorNathael Pajani <nathael.pajani@ed3l.fr>
Mon, 26 Sep 2016 16:05:09 +0000 (18:05 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Fri, 10 Feb 2023 18:02:59 +0000 (19:02 +0100)
drivers/i2c.c
include/core/pio.h
include/lib/stdint.h
include/lib/string.h
lib/string.c

index 56d9e80..909854b 100644 (file)
  * Refer to LPC82x documentation (UM10800.pdf) for more information.
  */
 
-#include "lib/stdint.h"
-
-#include "core/lpc_regs.h"
-#include "core/lpc_core.h"
 #include "core/system.h"
 #include "lib/string.h"
 #include "lib/errno.h"
index 1f6f284..573454b 100644 (file)
@@ -26,7 +26,7 @@
  * It has nothing related to the GPIO function of the pins.
  */
 
-#include <core/lpc_regs.h>
+#include "core/lpc_regs.h"
 
 
 
index 3b5318d..f77b81d 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- *   lib/"lib/stdint.h"
+ *   lib/stdint.h
  *
  * Copyright 2016 Nathael Pajani <nathael.pajani@ed3l.fr>
  *
index 5866b49..748ea37 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef LIB_STRING_H
 #define LIB_STRING_H
 
-#include <lib/stddef.h>
+#include "lib/stddef.h"
 #include "lib/stdint.h"
 
 /**
index 834e514..ee69e32 100644 (file)
@@ -15,7 +15,7 @@
  *    reentrant and should be faster). Use only strsep() in new code, please.
  */
 
-#include <lib/stddef.h>
+#include "lib/stddef.h"
 #include "lib/stdint.h"
 
 /**