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