summaryrefslogtreecommitdiffstats
path: root/src/os.h
blob: 03ed2fa102af333c57153b2472875c6761c934c2 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _OS_H_
#define _OS_H_

#if __linux__ || __NetBSD__ || __FreBSD__ || __OpenBSD__ || __Darwin__ || __MacOSX__
#define HAVE_SQUEUE 1
#else
#define HAVE_SQUEUE 0
#endif

#endif