move the debug folder to the top level
[AROS.git] / test / misc / busyloop.c
bloba9cd7350a52402ce9277921248416179cbe9984d
1 /*
2 Copyright © 2017, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 /*
7 * Busy loop forever ...
8 * TOOD: make it launch a task on a specified processor that
9 * busy loops until it is sent a signal.
12 int main(void)
17 while (1);
19 return 0;