new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / headers / pthreads_op.h
1 /* Copyright (C) 2009 Trend Micro Inc.
2  * All rights reserved.
3  *
4  * This program is a free software; you can redistribute it
5  * and/or modify it under the terms of the GNU General Public
6  * License (version 2) as published by the FSF - Free Software
7  * Foundation
8  */
9
10 #ifndef PTHREADS_OP_H
11 #define PTHREADS_OP_H
12
13 #ifndef WIN32
14 int CreateThread(void *function_pointer(void *data), void *data) __attribute__((nonnull(1)));
15 #endif
16
17 #endif
18