Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- Fix for detecting unix


git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@20336 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Apr 30, 2014
1 parent 2f173e7 commit 2e3ae63
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion SimulationRuntime/c/simulation/modelinfo.c
Expand Up @@ -45,7 +45,6 @@
#include <stdint.h>
#include "read_matlab4.h"


/* UNDEF to debug the gnuplot file */
#define NO_PIPE

Expand Down
2 changes: 1 addition & 1 deletion SimulationRuntime/c/util/omc_mmap.h
Expand Up @@ -34,7 +34,7 @@
#include <stdio.h>

#if !defined(HAVE_MMAP)
#if defined(unix)
#if defined(unix) || defined(__APPLE__)
#include <unistd.h>
#endif
#if _POSIX_MAPPED_FILES>0
Expand Down

0 comments on commit 2e3ae63

Please sign in to comment.