Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - kcc-6/lib/test/tsgstp.c
There are 2 other files named tsgstp.c in the archive. Click here to see a list.
#include <signal.h>
main()
{
    void foo();

    signal(SIGTSTP, SIG_DFL);
    signal(SIGCONT, foo);
    printf("Suspending...\n");
    kill(getpid(), SIGTSTP);
    printf("Done.\n");
}

void
foo()
{
	printf("Continued!\n");
}