File: err.h

package info (click to toggle)
xppaut 6.11b%2B1.dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 13,480 kB
  • ctags: 8,198
  • sloc: ansic: 91,694; makefile: 167
file content (18 lines) | stat: -rw-r--r-- 248 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _err_h_
#define _err_h_

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

#include "f2c.h"
#include "fio.h"

/* err.c */
void fatal(int n, char *s);
void f_init(void);
int canseek(FILE *f);
int nowreading(unit *x);
int nowwriting(unit *x);


#endif