summaryrefslogtreecommitdiff
path: root/firmware/libc
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/libc')
-rw-r--r--firmware/libc/memchr.c1
-rw-r--r--firmware/libc/memcmp.c2
-rw-r--r--firmware/libc/memcpy.c2
-rw-r--r--firmware/libc/strchr.c1
-rw-r--r--firmware/libc/strcmp.c1
-rw-r--r--firmware/libc/strcpy.c1
-rw-r--r--firmware/libc/strlen.c2
-rw-r--r--firmware/libc/strncmp.c1
-rw-r--r--firmware/libc/strrchr.c1
9 files changed, 9 insertions, 3 deletions
diff --git a/firmware/libc/memchr.c b/firmware/libc/memchr.c
index 26bdb9eea3..8b6b4d69d9 100644
--- a/firmware/libc/memchr.c
+++ b/firmware/libc/memchr.c
@@ -35,6 +35,7 @@ QUICKREF
35 35
36#include <string.h> 36#include <string.h>
37#include <limits.h> 37#include <limits.h>
38#include "_ansi.h" /* for _DEFUN */
38 39
39/* Nonzero if X is not aligned on a "long" boundary. */ 40/* Nonzero if X is not aligned on a "long" boundary. */
40#define UNALIGNED(X) ((long)X & (sizeof (long) - 1)) 41#define UNALIGNED(X) ((long)X & (sizeof (long) - 1))
diff --git a/firmware/libc/memcmp.c b/firmware/libc/memcmp.c
index 1535fcf5b5..c2fa1bf6b7 100644
--- a/firmware/libc/memcmp.c
+++ b/firmware/libc/memcmp.c
@@ -37,7 +37,7 @@ QUICKREF
37*/ 37*/
38 38
39#include <string.h> 39#include <string.h>
40 40#include "_ansi.h" /* for _DEFUN */
41 41
42/* Nonzero if either X or Y is not aligned on a "long" boundary. */ 42/* Nonzero if either X or Y is not aligned on a "long" boundary. */
43#define UNALIGNED(X, Y) \ 43#define UNALIGNED(X, Y) \
diff --git a/firmware/libc/memcpy.c b/firmware/libc/memcpy.c
index a89ac3c557..c5456ab41f 100644
--- a/firmware/libc/memcpy.c
+++ b/firmware/libc/memcpy.c
@@ -33,7 +33,7 @@ QUICKREF
33 */ 33 */
34 34
35#include "config.h" 35#include "config.h"
36#include <_ansi.h> 36#include "_ansi.h" /* for _DEFUN */
37#include <string.h> 37#include <string.h>
38 38
39/* Nonzero if either X or Y is not aligned on a "long" boundary. */ 39/* Nonzero if either X or Y is not aligned on a "long" boundary. */
diff --git a/firmware/libc/strchr.c b/firmware/libc/strchr.c
index 96acf5edf6..ada6e2d098 100644
--- a/firmware/libc/strchr.c
+++ b/firmware/libc/strchr.c
@@ -35,6 +35,7 @@ QUICKREF
35 35
36#include <string.h> 36#include <string.h>
37#include <limits.h> 37#include <limits.h>
38#include "_ansi.h" /* for _DEFUN */
38 39
39/* Nonzero if X is not aligned on a "long" boundary. */ 40/* Nonzero if X is not aligned on a "long" boundary. */
40#define UNALIGNED(X) ((long)X & (sizeof (long) - 1)) 41#define UNALIGNED(X) ((long)X & (sizeof (long) - 1))
diff --git a/firmware/libc/strcmp.c b/firmware/libc/strcmp.c
index bbbf4b174a..d540fae7dd 100644
--- a/firmware/libc/strcmp.c
+++ b/firmware/libc/strcmp.c
@@ -37,6 +37,7 @@ QUICKREF
37 37
38#include <string.h> 38#include <string.h>
39#include <limits.h> 39#include <limits.h>
40#include "_ansi.h" /* for _DEFUN */
40 41
41/* Nonzero if either X or Y is not aligned on a "long" boundary. */ 42/* Nonzero if either X or Y is not aligned on a "long" boundary. */
42#define UNALIGNED(X, Y) \ 43#define UNALIGNED(X, Y) \
diff --git a/firmware/libc/strcpy.c b/firmware/libc/strcpy.c
index 077ae73cc6..035e2bda9e 100644
--- a/firmware/libc/strcpy.c
+++ b/firmware/libc/strcpy.c
@@ -34,6 +34,7 @@ QUICKREF
34 34
35#include <string.h> 35#include <string.h>
36#include <limits.h> 36#include <limits.h>
37#include "_ansi.h" /* for _DEFUN */
37 38
38/*SUPPRESS 560*/ 39/*SUPPRESS 560*/
39/*SUPPRESS 530*/ 40/*SUPPRESS 530*/
diff --git a/firmware/libc/strlen.c b/firmware/libc/strlen.c
index 4d33eafce6..649df6764b 100644
--- a/firmware/libc/strlen.c
+++ b/firmware/libc/strlen.c
@@ -32,7 +32,7 @@ QUICKREF
32*/ 32*/
33 33
34#include "config.h" 34#include "config.h"
35#include <_ansi.h> 35#include "_ansi.h"
36#include <string.h> 36#include <string.h>
37#include <limits.h> 37#include <limits.h>
38 38
diff --git a/firmware/libc/strncmp.c b/firmware/libc/strncmp.c
index b1d8d9d43a..315fae810a 100644
--- a/firmware/libc/strncmp.c
+++ b/firmware/libc/strncmp.c
@@ -38,6 +38,7 @@ QUICKREF
38 38
39#include <string.h> 39#include <string.h>
40#include <limits.h> 40#include <limits.h>
41#include "_ansi.h" /* for _DEFUN */
41 42
42/* Nonzero if either X or Y is not aligned on a "long" boundary. */ 43/* Nonzero if either X or Y is not aligned on a "long" boundary. */
43#define UNALIGNED(X, Y) \ 44#define UNALIGNED(X, Y) \
diff --git a/firmware/libc/strrchr.c b/firmware/libc/strrchr.c
index 31b0d049b3..0489edd499 100644
--- a/firmware/libc/strrchr.c
+++ b/firmware/libc/strrchr.c
@@ -34,6 +34,7 @@ QUICKREF
34*/ 34*/
35 35
36#include <string.h> 36#include <string.h>
37#include "_ansi.h" /* for _DEFUN */
37 38
38char * 39char *
39_DEFUN (strrchr, (s, i), 40_DEFUN (strrchr, (s, i),