home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / kaffe-0.2 / lib / native / java.lang / java.lang.Compiler.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-12  |  847 b   |  52 lines

  1. /*
  2.  * java.lang.Compiler.c
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  11.  */
  12.  
  13. #include <assert.h>
  14. #include <native.h>
  15. #include "java.lang.Compiler.h"
  16.  
  17. void
  18. java_lang_Compiler_initialize()
  19. {
  20.     abort();
  21. }
  22.  
  23. long /* bool */
  24. java_lang_Compiler_compileClass(struct Hjava_lang_Class* class)
  25. {
  26.     abort();
  27. }
  28.  
  29. long /* bool */
  30. java_lang_Compiler_compileClasses(struct Hjava_lang_String* str)
  31. {
  32.     abort();
  33. }
  34.  
  35. struct Hjava_lang_Object*
  36. java_lang_Compiler_command(struct Hjava_lang_Object* obj)
  37. {
  38.     abort();
  39. }
  40.  
  41. void
  42. java_lang_Compiler_enable()
  43. {
  44.     abort();
  45. }
  46.  
  47. void
  48. java_lang_Compiler_disable()
  49. {
  50.     abort();
  51. }
  52.