Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3868 → Rev 3869

/branches/dynload/uspace/lib/libtest/libtest.c
34,7 → 34,7
* @file
*/
 
#include <stdio.h>
//#include <stdio.h>
#include "libtest.h"
 
static void kputint(unsigned i)
49,11 → 49,22
// );
}
 
void test_func(void)
int number = 137;
 
int test_fun2(void);
 
int test_fun2(void)
{
printf("Hello, this is 'test_func()' in libtest.so!\n");
return number;
}
 
int test_func(void)
{
// printf("Hello, this is 'test_func()' in libtest.so!\n");
// kputint(42);
// return 42;
// while(1);
return test_fun2();
}
 
/** @}