File: defs.h

package info (click to toggle)
mtx 1.2.16rel-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 660 kB
  • ctags: 696
  • sloc: ansic: 4,380; sh: 2,489; python: 203; makefile: 124; perl: 117
file content (25 lines) | stat: -rw-r--r-- 494 bytes parent folder | download | duplicates (11)
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
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <fcntl.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>

typedef int DEVICE_TYPE;

#ifdef __osf__
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <io/common/iotypes.h>
#else /* must be ultrix */
#include <sys/devio.h>
#endif
#include <io/cam/cam.h>
#include <io/cam/uagt.h> 
#include <io/cam/dec_cam.h>
#include <io/cam/scsi_all.h>  
#define DEV_CAM		"/dev/cam"	/* CAM device path */


#define DIGITAL_UNIX