Change xreadlink module to use areadlink.
[pspp] / lib / xreadlink.c
1 /* xreadlink.c -- readlink wrapper to return the link name in malloc'd storage
2
3    Copyright (C) 2001, 2003-2007 Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2, or (at your option)
8    any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; see the file COPYING.
17    If not, write to the Free Software Foundation,
18    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 /* Written by Jim Meyering <jim@meyering.net>
21    and Bruno Haible <bruno@clisp.org>.  */
22
23 #include <config.h>
24
25 /* Specification.  */
26 #include "xreadlink.h"
27
28 #include <errno.h>
29
30 #include "areadlink.h"
31 #include "xalloc.h"
32
33 /* Call readlink to get the symbolic link value of FILENAME.
34    Return a pointer to that NUL-terminated string in malloc'd storage.
35    If readlink fails, return NULL and set errno.
36    If realloc fails, or if the link value is longer than SIZE_MAX :-),
37    give a diagnostic and exit.  */
38
39 char *
40 xreadlink (char const *filename)
41 {
42   char *result = areadlink (filename);
43   if (result == NULL && errno == ENOMEM)
44     xalloc_die ();
45   return result;
46 }