source: git/libpolys/misc/mylimits.h @ 405407

spielwiese
Last change on this file since 405407 was 0724372, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
Made MAX_INT_* into constants in mylimits.h
  • Property mode set to 100644
File size: 516 bytes
Line 
1/* -*-c++-*- */
2/*******************************************************************
3 *  File:    mylimits.h
4 *  Purpose: limits.h configuration for omalloc
5 *  Author:  hannes (Hans Schoenemann)
6 *  Created: 03/01
7 *******************************************************************/
8#ifndef _MYLIMITS_H
9#define _MYLIMITS_H
10
11/* Maximum/minimum value an `signed int' (in Singular interpreter) can hold. */
12const int MAX_INT_VAL = 0x7fffffff;
13const int MAX_INT_LEN = 11;
14#include <limits.h>
15
16#endif /* _MYLIMITS_H */
Note: See TracBrowser for help on using the repository browser.