mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-14 13:41:02 +00:00
11 lines
188 B
C
11 lines
188 B
C
|
#ifndef _BSD_STRSEP_H
|
||
|
#define _BSD_STRSEP_H
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
#ifndef HAVE_STRSEP
|
||
|
char *strsep(char **stringp, const char *delim);
|
||
|
#endif /* HAVE_STRSEP */
|
||
|
|
||
|
#endif /* _BSD_STRSEP_H */
|