Home | History | Annotate | Download | only in include
      1 /*
      2  * XXX - Add OpenSSH copyright...
      3  */
      4 
      5 #ifndef	_DIRNAME_H
      6 #define	_DIRNAME_H
      7 
      8 #pragma ident	"%Z%%M%	%I%	%E% SMI"
      9 
     10 #ifdef __cplusplus
     11 extern "C" {
     12 #endif
     13 
     14 
     15 #ifndef HAVE_DIRNAME
     16 
     17 char *dirname(const char *path);
     18 
     19 #endif
     20 
     21 #ifdef __cplusplus
     22 }
     23 #endif
     24 
     25 #endif /* _DIRNAME_H */
     26