VirtualBox

source: kBuild/trunk/src/kash/strsignal.c@ 3451

Last change on this file since 3451 was 3411, checked in by bird, 5 years ago

kash: windows build it

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 206 bytes
Line 
1/*
2 * Fake strsignal (for Windows/MSC).
3 */
4
5#include "shinstance.h" /* for MSC */
6#include <string.h>
7
8const char *strsignal(int iSig)
9{
10 if (iSig < NSIG)
11 return sys_signame[iSig];
12 return NULL;
13}
14
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette