blob: a8bd6c17c7087f7050996e6a560ea418461a9900 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* $Id: basename.h,v 1.3 2003/02/25 03:32:16 djm Exp $ */
#ifndef _BASENAME_H
#define _BASENAME_H
#include "config.h"
#if !defined(HAVE_BASENAME)
char *basename(const char *path);
#endif /* !defined(HAVE_BASENAME) */
#endif /* _BASENAME_H */
|