9 lines
117 B
C
9 lines
117 B
C
|
#include <mlvalues.h>
|
||
|
#include "unix.h"
|
||
|
|
||
|
value unix_pause() /* ML */
|
||
|
{
|
||
|
pause();
|
||
|
return Val_unit;
|
||
|
}
|