mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
15 lines
169 B
C
15 lines
169 B
C
/*
|
|
*
|
|
* (c) 2008 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
int default_unit = -1;
|
|
|
|
void stream_set_default(int unit)
|
|
{
|
|
default_unit = unit;
|
|
}
|