Newer
Older
ubixos / src / lib / libc / stdlib / exit.c
/**************************************************************************************
 Copyright (c) 2002 The UbixOS Project
 All rights reserved.

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

 $Id$

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

void exit(int status) {
  asm(
    "int %0\n"
    : : "i" (0x80),"a" (2),"b" (status)
    );
  }