source: buchla-68k/libcio/open.x@ 526a993

Last change on this file since 526a993 was 526a993, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Wording change.

  • Property mode set to 100644
File size: 899 bytes
Line 
1/*
2 =============================================================================
3 open.c -- external declarations
4 =============================================================================
5*/
6
7#pragma once
8
9#include "io.h"
10#include "stdint.h"
11
12/*
13 =============================================================================
14 external functions
15 =============================================================================
16*/
17
18extern int16_t _fileop(int8_t *name, int16_t flag, int16_t mode, struct channel *chp, struct devtabl *dp);
19extern int16_t creat(int8_t *name, int16_t mode);
20extern int16_t creata(int8_t *name, int16_t mode);
21extern int16_t creatb(int8_t *name, int16_t mode);
22extern int16_t open(int8_t *name, int16_t flag, int16_t mode);
23extern int16_t opena(int8_t *name, int16_t flag, int16_t mode);
24extern int16_t openb(int8_t *name, int16_t flag, int16_t mode);
Note: See TracBrowser for help on using the repository browser.