Home | History | Annotate | Download | only in include
      1 /* $Id: realpath.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
      2 
      3 #ifndef	_REALPATH_H
      4 #define	_REALPATH_H
      5 
      6 #pragma ident	"%Z%%M%	%I%	%E% SMI"
      7 
      8 #ifdef __cplusplus
      9 extern "C" {
     10 #endif
     11 
     12 #include "config.h"
     13 
     14 #if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH)
     15 
     16 char *realpath(const char *path, char *resolved);
     17 
     18 #endif /* !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH) */
     19 
     20 #ifdef __cplusplus
     21 }
     22 #endif
     23 
     24 #endif /* _REALPATH_H */
     25