Ticket #5208: Return.c

File Return.c, 173 bytes (added by dterei, 2 years ago)
Line 
1#include <stdlib.h>
2
3/* The Fasm backend can't handle return statements, so we
4 * jump in the cmm test file to this function to return
5 */
6void c_return(void)
7{
8        return;
9}