xref: /illumos-gate/usr/src/compat/bhyve/sys/limits.h (revision d0b3c59b)
1bf21cd93STycho Nightingale /*
2bf21cd93STycho Nightingale  * This file and its contents are supplied under the terms of the
3bf21cd93STycho Nightingale  * Common Development and Distribution License ("CDDL"), version 1.0.
4bf21cd93STycho Nightingale  * You may only use this file in accordance with the terms of version
5bf21cd93STycho Nightingale  * 1.0 of the CDDL.
6bf21cd93STycho Nightingale  *
7bf21cd93STycho Nightingale  * A full copy of the text of the CDDL should have accompanied this
8bf21cd93STycho Nightingale  * source.  A copy of the CDDL is also available via the Internet at
9bf21cd93STycho Nightingale  * http://www.illumos.org/license/CDDL.
10bf21cd93STycho Nightingale  */
11bf21cd93STycho Nightingale 
12bf21cd93STycho Nightingale /*
13bf21cd93STycho Nightingale  * Copyright 2013 Pluribus Networks Inc.
144c87aefeSPatrick Mooney  * Copyright 2017 Joyent, Inc.
15bf21cd93STycho Nightingale  */
16bf21cd93STycho Nightingale 
17bf21cd93STycho Nightingale #ifndef _COMPAT_FREEBSD_SYS_LIMITS_H_
18bf21cd93STycho Nightingale #define	_COMPAT_FREEBSD_SYS_LIMITS_H_
19bf21cd93STycho Nightingale 
204c87aefeSPatrick Mooney #include_next <limits.h>
214c87aefeSPatrick Mooney 
224c87aefeSPatrick Mooney #define	OFF_MAX		((off_t)-1)
234c87aefeSPatrick Mooney 
24bf21cd93STycho Nightingale #endif	/* _COMPAT_FREEBSD_SYS_LIMITS_H_ */
25