File: ksh_limval.h

package info (click to toggle)
posh 0.3.14
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,492 kB
  • ctags: 1,704
  • sloc: ansic: 15,481; xml: 1,555; perl: 943; sh: 897; makefile: 101
file content (23 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Wrapper around the values.h/limits.h includes/ifdefs */
/* $Id$ */

#ifdef HAVE_VALUES_H
# include <values.h>
#endif /* HAVE_VALUES_H */
/* limits.h is included in sh.h */

#ifndef DMAXEXP
# define DMAXEXP	128	/* should be big enough */
#endif

#ifndef BITSPERBYTE
# ifdef CHAR_BIT
#  define BITSPERBYTE	CHAR_BIT
# else
#  define BITSPERBYTE	8	/* probably true.. */
# endif
#endif

#ifndef BITS
# define BITS(t)	(BITSPERBYTE * sizeof(t))
#endif