mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Solaris has no u_int32_t etc.
This commit is contained in:
9
compat.h
9
compat.h
@ -1,4 +1,4 @@
|
||||
/* $Id: compat.h,v 1.13 2009-08-20 12:25:17 nicm Exp $ */
|
||||
/* $Id: compat.h,v 1.14 2009-08-20 12:49:18 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -16,6 +16,13 @@
|
||||
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef HAVE_U_INT
|
||||
typedef uint8_t u_int8_t;
|
||||
typedef uint16_t u_int16_t;
|
||||
typedef uint32_t u_int32_t;
|
||||
typedef uint64_t u_int64_t;
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PATHS_H
|
||||
#define _PATH_BSHELL "/bin/sh"
|
||||
#define _PATH_TMP "/tmp/"
|
||||
|
Reference in New Issue
Block a user