mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
Solaris has no strsep(3).
This commit is contained in:
7
compat.h
7
compat.h
@ -1,4 +1,4 @@
|
||||
/* $Id: compat.h,v 1.9 2009-08-14 21:13:48 tcunha Exp $ */
|
||||
/* $Id: compat.h,v 1.10 2009-08-16 16:15:53 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -133,6 +133,11 @@
|
||||
char *strcasestr(const char *, const char *);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_STRSEP
|
||||
/* strsep.c */
|
||||
char *strsep(char **, const char *);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_STRTONUM
|
||||
/* strtonum.c */
|
||||
long long strtonum(const char *, long long, long long, const char **);
|
||||
|
Reference in New Issue
Block a user