On Tue, Jul 28, 2015 at 01:04:58PM +0200, Sebastian Huber wrote: > +#ifndef GOMP_POOL_H > +#define GOMP_POOL_H 1 > + > +#include <libgomp.h>
Please use #include "libgomp.h" here. > +#include <libgomp.h> Similarly. > + > +#include "libgomp.h" > +#include <errno.h> > +#include <pool.h> #include "pool.h" (and perhaps if possible move after libgomp.h). > --- a/libgomp/team.c > +++ b/libgomp/team.c > @@ -27,6 +27,7 @@ > creation and termination. */ > > #include "libgomp.h" > +#include <pool.h> Likewise. Ok with those changes. Jakub