diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-07-23 01:07:53 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-07-23 01:07:53 +0200 |
commit | ec5529639dd7cd315ce98b288f96c522c464e46a (patch) | |
tree | e532615f511976f77a047135ea3290505681e40c /make/check_strlcpy.cpp | |
parent | f92b20b6f206b610213f10801e59dd6d8c68f06d (diff) | |
parent | 0b4285abd12323920d92fee51e199edd7527dbec (diff) |
Merge pull request #1076 from SaberUK/insp20+kqueue
[2.0] Fix checking whether kqueue/stdint/strlcpy are available.
Diffstat (limited to 'make/check_strlcpy.cpp')
-rw-r--r-- | make/check_strlcpy.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/make/check_strlcpy.cpp b/make/check_strlcpy.cpp new file mode 100644 index 000000000..e51d18d40 --- /dev/null +++ b/make/check_strlcpy.cpp @@ -0,0 +1,25 @@ +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * Copyright (C) 2015 Peter Powell <petpow@saberuk.com> + * + * This file is part of InspIRCd. InspIRCd is free software: you can + * redistribute it and/or modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation, version 2. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + + +#include <string.h> + +int main() { + char test[5]; + strlcpy(test, "test", sizeof(test)); +} |