This file is indexed.

/usr/include/openvas/proctitle.h is in libopenvas2-dev 2.0.4-2.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
/***************************************************************************
 * LPRng - An Extended Print Spooler System
 *
 * Copyright 1988-2002, Patrick Powell, San Diego, CA
 *     papowell@lprng.com
 * See LICENSE for conditions of use.
 * $Id: proctitle.h,v 1.1 2002/12/14 12:34:42 renaud Exp $
 ***************************************************************************/



#ifndef _PROCTITLE_H_
#define _PROCTITLE_H_ 1


#ifndef LINEBUFFER 
#define LINEBUFFER 4096
#endif

void initsetproctitle(int argc, char *argv[], char *envp[]);
/* VARARGS3 */
#if !defined(HAVE_SETPROCTITLE) || !defined(HAVE_SETPROCTITLE_DEF)
void setproctitle( const char *fmt, ... );
void proctitle( const char *fmt, ... );
#endif

/* PROTOTYPES */
#endif