File: dummy-sigaltstack.c

package info (click to toggle)
qtrvsim 0.9.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,844 kB
  • sloc: cpp: 25,687; ansic: 7,754; makefile: 318; python: 303; sh: 278; asm: 268; xml: 9
file content (10 lines) | stat: -rw-r--r-- 122 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#ifdef __EMSCRIPTEN__

#include <signal.h>

int sigaltstack(const stack_t *ss, stack_t *old_ss)
{
   return -1;
}

#endif