view lib-src/leditcfns.c @ 14808:b9483b592728 libc-960315 libc-960316 libc-960317 libc-960318 libc-960319 libc-960320 libc-960321

Recognize mips-*-sysv*
author Ian Lance Taylor <ian@cygnus.com>
date Fri, 15 Mar 1996 00:14:04 +0000
parents da530eb93c1a
children 695cf19ef79e
line wrap: on
line source

#include <sgtty.h>
#include <signal.h>
#define STRLEN 100
static char str[STRLEN+1] = "%?emacs"; /* extra char for the null */

switch_to_proc(){
    char *ptr = str;
    while (*ptr) ioctl(0, TIOCSTI, ptr++);
    ioctl(0, TIOCSTI, "\n");
    kill(getpid(), SIGTSTP);
    }

set_proc_str(ptr) char *ptr; {
    if (strlen(ptr) <= STRLEN)
	strcpy(str, ptr);
    else
	printf("string too long for set-proc-str: %s\n", ptr);
    }