home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / KERNEL-S / V1.2 / LINUX-1.2 / LINUX-1 / linux / arch / mips / kernel / vm86.c < prev   
Encoding:
C/C++ Source or Header  |  1995-01-13  |  245 b   |  15 lines

  1. /*
  2.  *  arch/mips/vm86.c
  3.  *
  4.  *  Copyright (C) 1994  Waldorf GMBH,
  5.  *  written by Ralf Baechle
  6.  */
  7. #include <linux/linkage.h>
  8. #include <linux/errno.h>
  9. #include <linux/vm86.h>
  10.  
  11. asmlinkage int sys_vm86(struct vm86_struct * v86)
  12. {
  13.     return -ENOSYS;
  14. }
  15.