Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. #include <stdio.h>
  2.  
  3. extern void hello();
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7.     hello();
  8.     return 0;
  9. };
  10.