Changeset b5f5baa034e9f7312f89fb4d2c39f2a16e84816c
- Timestamp:
- 03/17/09 17:59:45
(4 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1237312785 +0000
- git-parent:
[680ff24492182d294fb819e53a04fa8f91769b84]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1237312785 +0000
- Message:
strlcpy reported not defined on some platforms... pull it in with noit_defines.h
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rbafab25 |
rb5f5baa |
|
| | 1 | #include "noit_config.h" |
|---|
| | 2 | #ifndef HAVE_STRLCPY |
|---|
| 1 | 3 | size_t strlcpy(char *dst, const char *src, size_t size); |
|---|
| | 4 | #endif |
|---|
| | 5 | #ifndef HAVE_STRLCAT |
|---|
| 2 | 6 | size_t strlcat(char *dst, const char *src, size_t size); |
|---|
| | 7 | #endif |
|---|