This file is indexed.

/usr/include/styx/memosx.h is in styx-dev 2.0.1-1.

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
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* -------------------------------------------------------------------------- */
/*                                                                            */
/* [memosx.h(mem_base)]        Memory Management                              */
/*                                                                            */
/* Copyright (c) 1993 by D\olle, Manns                                        */
/* -------------------------------------------------------------------------- */

/* File generated by 'ctoh'. Don't change manually. */

#ifndef mem_base_INCL
#define mem_base_INCL


#include "sysbase0.h"


#ifdef __cplusplus
extern "C" {
#endif


/* ------------------------------- Memory ----------------------------------- */

long ObjCount(void);                   /* allocated objects                 */

StdCPtr NewMem(long objsize)
/* creates an object of size 'objsize'; raises exception */
;


#if !defined(HAVE_CONFIG_H) || defined(HAVE_REALLOC)

StdCPtr ResizeMem(StdCPtr Any, long objsize)
/* resizes an object to size 'objsize'; raises exception */
;


#endif

void FreeMem(StdCPtr Any);             /* frees object 'Any'                */


#ifdef __cplusplus
}
#endif

#endif