[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[tyndur-devel] [PATCH] string.h



* string.h sollte für memset() & Co. inkludiert
  werden

Signed-off-by: Max Reitz <xanclic@xxxxxxxxxxxxxx>
---
 e1000/device.c  |    1 +
 e1000/main.c    |    1 +
 pcnet/main.c    |    1 +
 pcnet/pcnet.c   |    1 +
 sis900/device.c |    1 +
 sis900/main.c   |    2 ++
 6 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/e1000/device.c b/e1000/device.c
index 5534b3b..48f3a58 100644
--- a/e1000/device.c
+++ b/e1000/device.c
@@ -29,6 +29,7 @@
 #include <stdint.h>
 #include <stdio.h>
 #include <stddef.h>
+#include <string.h>
 
 #include "cdi.h"
 #include "cdi/misc.h"
diff --git a/e1000/main.c b/e1000/main.c
index 39da9f6..a96e055 100644
--- a/e1000/main.c
+++ b/e1000/main.c
@@ -29,6 +29,7 @@
 #include <stdint.h>
 #include <stdlib.h>
 #include <stdio.h>
+#include <string.h>
 
 #include "cdi/net.h"
 #include "cdi/pci.h"
diff --git a/pcnet/main.c b/pcnet/main.c
index dd94159..a2c3929 100644
--- a/pcnet/main.c
+++ b/pcnet/main.c
@@ -35,6 +35,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
 #include "cdi/net.h"
 #include "cdi/pci.h"
diff --git a/pcnet/pcnet.c b/pcnet/pcnet.c
index af79158..130b29a 100644
--- a/pcnet/pcnet.c
+++ b/pcnet/pcnet.c
@@ -37,6 +37,7 @@
 #include "cdi/io.h"
 
 #include <stdio.h>
+#include <string.h>
 
 static void pcnet_handle_interrupt(struct cdi_device* device);
 static void pcnet_reset(struct pcnet_device *netcard);
diff --git a/sis900/device.c b/sis900/device.c
index fd433f1..ab0479a 100644
--- a/sis900/device.c
+++ b/sis900/device.c
@@ -29,6 +29,7 @@
 #include <stdint.h>
 #include <stdio.h>
 #include <stddef.h>
+#include <string.h>
 
 #include "cdi.h"
 #include "cdi/misc.h"
diff --git a/sis900/main.c b/sis900/main.c
index 1904c6e..1409c90 100644
--- a/sis900/main.c
+++ b/sis900/main.c
@@ -29,6 +29,8 @@
 #include <stdint.h>
 #include <stdlib.h>
 #include <stdio.h>
+#include <device.h>
+#include <string.h>
 
 #include "cdi/net.h"
 #include "cdi/pci.h"
-- 
1.6.0.2