dirname.c (dfd669ab389b4fd878dc7df1085e30d4bc2fb96e) dirname.c (ef0b253881c9546ff88d3ed8480df7c791b3ddff)
1/* $NetBSD: dirname.c,v 1.14 2018/09/27 00:45:34 kre Exp $ */
2
3/*-
4 * Copyright (c) 1997, 2002 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Klaus Klein and Jason R. Thorpe.

--- 25 unchanged lines hidden (view full) ---

34#endif
35#ifndef HAVE_DIRNAME
36
37#include <sys/cdefs.h>
38#if defined(LIBC_SCCS) && !defined(lint)
39__RCSID("$NetBSD: dirname.c,v 1.14 2018/09/27 00:45:34 kre Exp $");
40#endif /* !LIBC_SCCS && !lint */
41
1/* $NetBSD: dirname.c,v 1.14 2018/09/27 00:45:34 kre Exp $ */
2
3/*-
4 * Copyright (c) 1997, 2002 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Klaus Klein and Jason R. Thorpe.

--- 25 unchanged lines hidden (view full) ---

34#endif
35#ifndef HAVE_DIRNAME
36
37#include <sys/cdefs.h>
38#if defined(LIBC_SCCS) && !defined(lint)
39__RCSID("$NetBSD: dirname.c,v 1.14 2018/09/27 00:45:34 kre Exp $");
40#endif /* !LIBC_SCCS && !lint */
41
42#include "namespace.h"
43#include <sys/param.h>
44#ifdef HAVE_LIBGEN_H
45#include <libgen.h>
46#endif
47#ifdef HAVE_LIMITS_H
48#include <limits.h>
49#endif
50#ifdef HAVE_STRING_H

--- 76 unchanged lines hidden ---
42#include <sys/param.h>
43#ifdef HAVE_LIBGEN_H
44#include <libgen.h>
45#endif
46#ifdef HAVE_LIMITS_H
47#include <limits.h>
48#endif
49#ifdef HAVE_STRING_H

--- 76 unchanged lines hidden ---