mirror of
git://sourceware.org/git/valgrind.git
synced 2026-01-12 00:19:31 +08: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" ]
|