1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-19 18:26:32 +02:00

Include xstrndup.h.

(xstrndup): Remove function, now that it's been factored out into
it's own file.
This commit is contained in:
Jim Meyering
2003-07-23 06:39:44 +00:00
parent b220480e9d
commit 8d69e13ee5

View File

@@ -1,6 +1,6 @@
/* dircolors - output commands to set the LS_COLOR environment variable
Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2002 H. Peter Anvin
Copyright (C) 1996-2000 Free Software Foundation, Inc.
Copyright (C) 1996-2003 Free Software Foundation, Inc.
Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000 H. Peter Anvin
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -31,6 +31,7 @@
#include "getline.h"
#include "obstack.h"
#include "quote.h"
#include "xstrndup.h"
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "dircolors"
@@ -123,15 +124,6 @@ For details on the format of these files, run `dircolors --print-database'.\n\
exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
}
static void *
xstrndup (const char *s, size_t n)
{
char *new = strndup (s, n);
if (new == NULL)
xalloc_die ();
return new;
}
/* If the SHELL environment variable is set to `csh' or `tcsh,'
assume C shell. Else Bourne shell. */