diff options
author | Sven Gothel <[email protected]> | 2013-10-24 23:43:43 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-10-24 23:43:43 +0200 |
commit | 970c9823007d1618e67480440ff40e7802dbb90f (patch) | |
tree | e29237cb0baa8121193ece29aa9d84a5e03f08f6 /src/jogl/native/macosx | |
parent | 38025a602750161c72a50ad7a25e97fb7a6cb6df (diff) |
Bug 871 - Add optional xcode.clang support for all modules (Extends Bug 837 w/ xcode's xcrun) - Remove abs. include path.
#include </usr/include/machine/types.h> -> #include <machine/types.h>
Diffstat (limited to 'src/jogl/native/macosx')
-rw-r--r-- | src/jogl/native/macosx/MacOSXCustomCGLCode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/native/macosx/MacOSXCustomCGLCode.c b/src/jogl/native/macosx/MacOSXCustomCGLCode.c index f8b7a800f..75896c3a2 100644 --- a/src/jogl/native/macosx/MacOSXCustomCGLCode.c +++ b/src/jogl/native/macosx/MacOSXCustomCGLCode.c @@ -2,7 +2,7 @@ #include <assert.h> -#include </usr/include/machine/types.h> +#include <machine/types.h> #include "macosx-window-system.h" void CGLQueryPixelFormat(CGLPixelFormatObj fmt, int* iattrs, int niattrs, int* ivalues) { |