mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-21 02:31:50 +03:00
7 lines
118 B
C
7 lines
118 B
C
|
#include <stdlib.h>
|
||
|
#include "idris_system.h"
|
||
|
|
||
|
int idris2_system(const char* command) {
|
||
|
return system(command);
|
||
|
}
|