diff options
| author | Roy Marples <roy@marples.name> | 2019-10-07 14:59:50 +0100 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2019-10-07 14:59:50 +0100 |
| commit | 0f9338e0fd6093a34ad8d62cde60bf78462ba387 (patch) | |
| tree | 4db02e258a31588e2cc51c4a8bcb838f2b45865e | |
| parent | 2ade5c327f06ea06315dcc65a36c925560bae6b6 (diff) | |
| download | parpd-0f9338e0fd6093a34ad8d62cde60bf78462ba387.tar.xz | |
Linux: Fix compile
| -rw-r--r-- | compat/strlcpy.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compat/strlcpy.h b/compat/strlcpy.h index 2131cde..8b02f45 100644 --- a/compat/strlcpy.h +++ b/compat/strlcpy.h @@ -19,6 +19,8 @@ #ifndef STRLCPY_H #define STRLCPY_H +#include <stddef.h> + size_t strlcpy(char *, const char *, size_t); #endif |
