summaryrefslogtreecommitdiff
path: root/make/check_strlcpy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'make/check_strlcpy.cpp')
-rw-r--r--make/check_strlcpy.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/make/check_strlcpy.cpp b/make/check_strlcpy.cpp
deleted file mode 100644
index e51d18d40..000000000
--- a/make/check_strlcpy.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * 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));
-}