/* * Copyright 2009 Haiku Inc. All rights reserved. * Distributed under the terms of the MIT License. */ #ifndef _FBSD_COMPAT_SYS_CTYPE_H_ #define _FBSD_COMPAT_SYS_CTYPE_H_ #define isprint(c) ((c) >= ' ' && (c) <= '~') #endif /* _FBSD_COMPAT_SYS_CTYPE_H_ */