diff options
author | Michael Brown <mcb30@etherboot.org> | 2008-10-12 01:59:57 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2008-10-12 02:14:16 +0100 |
commit | 8e38669d5413f3b185b6a73efbbc9eaff13a6a05 (patch) | |
tree | b290709b4917d54ef2d4f15d2f21391311bd3b4e | |
parent | a1e11a6beb1c73ce875c4a5ce0b7cd8a02528f92 (diff) | |
download | ipxe-8e38669d5413f3b185b6a73efbbc9eaff13a6a05.tar.gz |
[rtl8139] Add missing #include <string.h>
-rw-r--r-- | src/drivers/net/rtl8139.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/net/rtl8139.c b/src/drivers/net/rtl8139.c index ff7de5c6..2dff324c 100644 --- a/src/drivers/net/rtl8139.c +++ b/src/drivers/net/rtl8139.c @@ -69,6 +69,7 @@ #include <stdint.h> #include <stdlib.h> #include <stdio.h> +#include <string.h> #include <gpxe/io.h> #include <errno.h> #include <unistd.h> |