/usr/share/z88dk/include/oz700/ozint.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 | /*
HTC Compatibility Library and OZ extras
5. INTERRUPT HANDLING
$Id: ozint.h,v 1.1 2003/10/21 17:15:19 stefano Exp $
*/
extern __LIB__ _ozcustomisr(void);
extern int __LIB__ ozsetisr(void *f); /* set custom ISR with paging */
extern int __LIB__ _ozsetisr(void *f); /* same, but no paging--routine must always
be paged in */
extern __LIB__ ozisroff(void); /* turn off custom ISR (set im 1) */
extern __LIB__ ozdisableinterrupts(void);
extern __LIB__ ozenableinterrupts(void);
extern __LIB__ ozintwait(void);
|