blob: eb3d713c93861dde43540b3af39f8d459592bd6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <limits.h>
#define LONG_MIN (-LONG_MAX - 1L)
/** long minimum **/
/***
is the minimum value representable as a TYPE(long int).
***/
/*
VALUE_MIN(-2147483647)
*/
/*
STDC(1)
*/
|