15 lines
341 B
C
15 lines
341 B
C
|
/* $Id: unsupported.c,v 1.1 2003/08/24 20:01:48 bwalle Exp $ */
|
||
|
|
||
|
/******************************************************************************
|
||
|
*
|
||
|
* get_stat()
|
||
|
*
|
||
|
* stub function for all unsupported operating systems
|
||
|
*
|
||
|
*****************************************************************************/
|
||
|
|
||
|
int get_stat(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|