diff options
author | Michael Brown <mcb30@ipxe.org> | 2016-03-12 18:02:20 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2016-03-12 18:02:20 +0000 |
commit | 3c84178003495b258f7604b47325afd6a53a3d56 (patch) | |
tree | 0a6d5c777fa7dca20d42bef0ed8971313ab7d770 /src | |
parent | 9eff4284bd0d0dd9ea53817c4a999bf9d9ce9454 (diff) | |
download | ipxe-3c84178003495b258f7604b47325afd6a53a3d56.zip ipxe-3c84178003495b258f7604b47325afd6a53a3d56.tar.gz ipxe-3c84178003495b258f7604b47325afd6a53a3d56.tar.bz2 |
[serial] Add missing #include <string.h>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/core/serial.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/serial.c b/src/core/serial.c index 4ce0255..dd22f67 100644 --- a/src/core/serial.c +++ b/src/core/serial.c @@ -30,6 +30,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); */ #include <stddef.h> +#include <string.h> #include <ipxe/init.h> #include <ipxe/uart.h> #include <ipxe/console.h> |