From 897a14c36fa58f88508c0349dbfd9df368d5de78 Mon Sep 17 00:00:00 2001
From: iceman1001 <iceman@iuse.se>
Date: Sat, 21 Jan 2017 11:06:48 +0100
Subject: [PATCH] CHG: moved to header file.  common.h has RAMFUNC definition

---
 armsrc/string.c | 2 --
 armsrc/string.h | 6 ++----
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/armsrc/string.c b/armsrc/string.c
index 945a4cf6..6552ce1c 100644
--- a/armsrc/string.c
+++ b/armsrc/string.c
@@ -7,9 +7,7 @@
 //-----------------------------------------------------------------------------
 // Common string.h functions
 //-----------------------------------------------------------------------------
-
 #include "string.h"
-#include <stdint.h>
 
 void *memcpy(void *dest, const void *src, int len)
 {
diff --git a/armsrc/string.h b/armsrc/string.h
index a9dbd826..5e0edcac 100644
--- a/armsrc/string.h
+++ b/armsrc/string.h
@@ -12,8 +12,7 @@
 #ifndef __STRING_H
 #define __STRING_H
 
-#include <stdint.h>
-#include <util.h>
+#include <common.h>
 
 int strlen(const char *str);
 RAMFUNC void *memcpy(void *dest, const void *src, int len);
@@ -25,5 +24,4 @@ char *strcat(char *dest, const char *src);
 void strreverse(char s[]);
 void itoa(int n, char s[]);
 
-
-#endif /* __STRING_H */
+#endif /* __STRING_H */
\ No newline at end of file
-- 
2.39.5