mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00:00
11 lines
246 B
C
11 lines
246 B
C
/* libc/sys/linux/stack.c - Basic stack system calls */
|
|
|
|
/* Copyright 2002, Red Hat Inc. */
|
|
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <machine/syscall.h>
|
|
|
|
_syscall2(int,sigaltstack,const stack_t *,ss,stack_t *,oss)
|