mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-24 10:53:24 +08: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 */
|