Newer
Older
ubixos / src / bin / shell / main.c
@reddawg reddawg on 6 Jun 2002 472 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$

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

int main();

#include <stdio.h>

void _start() {
  main();
  }

int main() {
  while (1) {
    printf("Fucken A\n");
    }
  }