exit_constructor.c 140 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
#include <stdlib.h>
#include "test.h"

__attribute__((constructor)) 
void B_ctor() {
	exit(t_status); 
}

int main() {
	return t_status;  
}