mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
7 lines
164 B
Bash
Executable File
7 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Exit with status 0 if the system this script runs on supports sem_init()
|
|
# (Linux) and exit with status 1 if not (Darwin).
|
|
|
|
[ "$(uname)" != "Darwin" ]
|