source: buchla-68k/libcio/open.x@ 6aa430b

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

More accurate headers.

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