Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
divine-ltsmin-deb
Commits
8ca044a0
Commit
8ca044a0
authored
Nov 03, 2010
by
Alfons Laarman
Committed by
Michael Weber
Nov 04, 2010
Browse files
Mac compatibility fix (malloc.h)
parent
50a27d8f
Changes
3
Hide whitespace changes
Inline
Side-by-side
divine/report.h
View file @
8ca044a0
...
...
@@ -17,7 +17,7 @@
#ifdef HAVE_MPI
#include <mpi.h>
#ifdef
OPEN_MPI
#if
def
ined(
OPEN_MPI
) && !defined(__APPLE__)
#include <ompi/version.h>
#endif
#endif
...
...
wibble/sys/exec.cpp
View file @
8ca044a0
...
...
@@ -22,7 +22,9 @@
#include <string.h> // strdup
#include <unistd.h> // execve
#ifndef __APPLE__
#include <malloc.h> // alloca on win32 seems to live there
#endif
#include <iostream>
extern
char
**
environ
;
...
...
wibble/sys/fs.cpp
View file @
8ca044a0
...
...
@@ -5,7 +5,9 @@
#include <fstream>
#include <sys/stat.h>
#include <errno.h>
#ifndef __APPLE__
#include <malloc.h> // alloca on win32 seems to live there
#endif
namespace
wibble
{
namespace
sys
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment