diff options
| author | Patrick Williams <iawillia@us.ibm.com> | 2010-05-18 15:55:03 -0500 |
|---|---|---|
| committer | Patrick Williams <iawillia@us.ibm.com> | 2010-05-18 15:55:03 -0500 |
| commit | cf138201c24fdc83ee7835b65cce67e7d7a85e70 (patch) | |
| tree | 16650f82ac519ff60bc9100b4e90868463bd987d /src/include/string.h | |
| parent | 9ea98f274e18a3407ce109a331553e1c910274d9 (diff) | |
| download | blackbird-hostboot-cf138201c24fdc83ee7835b65cce67e7d7a85e70.tar.gz blackbird-hostboot-cf138201c24fdc83ee7835b65cce67e7d7a85e70.zip | |
Create simple console.
Diffstat (limited to 'src/include/string.h')
| -rw-r--r-- | src/include/string.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/string.h b/src/include/string.h new file mode 100644 index 000000000..f1465a4c0 --- /dev/null +++ b/src/include/string.h @@ -0,0 +1,17 @@ +#ifndef __STRING_H +#define __STRING_H + +#include <stdint.h> + +#ifdef __cplusplus +extern "C" +{ +#endif + + void* memset(void* s, int c, size_t n); + +#ifdef __cplusplus +}; +#endif + +#endif |

