about summary refs log tree commit diff
path: root/debug/getlogin_r_chk.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2013-05-06 15:58:44 -0700
committerRoland McGrath <roland@hack.frob.com>2013-05-06 15:58:44 -0700
commitee586a6d5c1f904035b702886466aac2bf3a9ba7 (patch)
tree0b6b55aad132e1fdeae29bef34234c3e045c7855 /debug/getlogin_r_chk.c
parent355f916505e3101f1952fd1a8e2c4c69b52cc36a (diff)
downloadglibc-ee586a6d5c1f904035b702886466aac2bf3a9ba7.tar.gz
glibc-ee586a6d5c1f904035b702886466aac2bf3a9ba7.tar.xz
glibc-ee586a6d5c1f904035b702886466aac2bf3a9ba7.zip
Move getlogin_r_chk to login/ subdir.
Diffstat (limited to 'debug/getlogin_r_chk.c')
-rw-r--r--debug/getlogin_r_chk.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/debug/getlogin_r_chk.c b/debug/getlogin_r_chk.c
deleted file mode 100644
index 8e490858a5..0000000000
--- a/debug/getlogin_r_chk.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/* Copyright (C) 2005-2013 Free Software Foundation, Inc.
-   This file is part of the GNU C Library.
-
-   The GNU C Library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Lesser General Public
-   License as published by the Free Software Foundation; either
-   version 2.1 of the License, or (at your option) any later version.
-
-   The GNU C Library 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
-   Lesser General Public License for more details.
-
-   You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
-
-#include <unistd.h>
-
-
-int
-__getlogin_r_chk (char *buf, size_t buflen, size_t nreal)
-{
-  if (buflen > nreal)
-    __chk_fail ();
-
-  return getlogin_r (buf, buflen);
-}