This file is indexed.

/usr/share/z88dk/include/oz.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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef __OZ_H__
#define __OZ_H__

/* Control file for include OZ7xx stuff */

/* $Id: oz.h,v 1.7 2003/10/29 11:37:11 stefano Exp $ */

//#include <oz700/ozfont.h>
#include <oz700/ozgfx.h>
#include <oz700/ozinput.h>
#include <oz700/ozint.h>
#include <oz700/ozmisc.h>
#include <oz700/ozscreen.h>
#include <oz700/ozserial.h>
#include <oz700/oztime.h>
//#include <oz700/scaldate.h>


/* functions renamed to have a double mode
   use the -DOZDK parameter to activate this */

#ifdef OZDK
#pragma set OZDK
#define ozgetch ozgetch2
#define ozkeyhit ozkeyhit2
#else
#define ozgetch fgetc_cons
#define ozkeyhit getk
#endif

#define getch ozgetch

#include <stdio.h>
#include <stdlib.h>

#endif