This file is indexed.

/usr/include/singular/singular/misc/mylimits.h is in libsingular4-dev-common 1:4.1.0-p3+ds-2build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
/* -*-c++-*- */
/*******************************************************************
 *  File:    mylimits.h
 *  Purpose: limits.h configuration for omalloc
 *  Author:  hannes (Hans Schoenemann)
 *  Created: 03/01
 *******************************************************************/
#ifndef _MYLIMITS_H
#define _MYLIMITS_H

/* Maximum/minimum value an `signed int' (in Singular interpreter) can hold. */
const int MAX_INT_VAL = 0x7fffffff;
const int MAX_INT_LEN = 11;
#include <limits.h>

#endif /* _MYLIMITS_H */