This file is indexed.

/usr/share/z88dk/include/net/stdio.h is in z88dk-data 1.8.ds1-10.

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
#ifndef __NET_STDIO_H__
#define __NET_STDIO_H__

/*
 * Some hooks for the stdio style routines
 *
 * Do not include yourself - system file!!
 *
 * $Id: stdio.h,v 1.3 2001/10/16 18:30:32 dom Exp $
 */


extern int __LIB__ fgetc_net(void *s);
extern int __LIB__ fputc_net(void *s, int c);
extern int __LIB__ closenet(void *s);
extern int __LIB__ opennet(FILE *fp, char *name,char *exp, size_t len);
extern int __LIB__ fflush_net(void *s);


#endif