Fix some reported compilation problems by including string.h with _GNU_SOURCE defined rather than prototyping strsignal ourselves. b=177912 sr=bryner

This commit is contained in:
dbaron%dbaron.org 2003-01-17 23:44:17 +00:00
Родитель c6f8f22611
Коммит f9552edf63
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -67,8 +67,11 @@
#include "nsIAppShellService.h"
#include "nsAppShellCIDs.h"
static NS_DEFINE_CID(kAppShellServiceCID, NS_APPSHELL_SERVICE_CID);
#else
extern "C" char * strsignal(int);
#elif defined(LINUX)
#ifndef _GNU_SOURCE
#define _GNU_SOURCE 1
#endif
#include <string.h>
#endif
#ifdef MOZ_WIDGET_PHOTON