Newer
Older
ubix / src / sys / include / ubixos / syscalls.h
@reddawg reddawg on 6 Jun 2002 627 bytes Enhancements
/**************************************************************************************
 Copyright (c) 2002 The UbixOS Project
 All rights reserved.

 Redistribution and use in source and binary forms, with or without modification,
 are prohibited.

 $Id$

**************************************************************************************/

#ifndef _SYSCALLS_H
#define _SYSCALLS_H

void sysFwrite();
void sysGetpid();
void sysExit();
void sysExec();

typedef void (*functionPTR)();

functionPTR systemCalls[] = {
  sysFwrite,sysGetpid,sysExit,sysExec
  };

int totalCalls = sizeof(systemCalls)/sizeof(functionPTR);

#endif