mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-26 00:58:37 +02:00
12 lines
150 B
C
12 lines
150 B
C
#include "xlisp.h"
|
|
#include "xlispfns.h"
|
|
|
|
|
|
void run_xlisp()
|
|
{
|
|
xlisp_main_init(0,NULL);
|
|
xlisp_main();
|
|
/* clean up */
|
|
xlisp_wrapup();
|
|
}
|