diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2012-04-05 15:39:01 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2012-04-05 15:39:01 -0400 |
commit | 7b3201eba1311c1be7382ddfa3d7a2ae151e36dc (patch) | |
tree | 8715e814f52c9fe4356280c4bc3c2e2ae9a889df /tests/hello_world_gles.c | |
parent | e9dc897fb280a9150b7b42ac4999d70c0809c33d (diff) |
Don't clash with system sincos() if it's defined and we don't know
Diffstat (limited to 'tests/hello_world_gles.c')
-rw-r--r-- | tests/hello_world_gles.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/hello_world_gles.c b/tests/hello_world_gles.c index 088b9dae..6f7a4324 100644 --- a/tests/hello_world_gles.c +++ b/tests/hello_world_gles.c @@ -59,6 +59,7 @@ #define GEAR_VERTEX_STRIDE 6 #ifndef HAVE_BUILTIN_SINCOS +#define sincos _sincos static void sincos (double a, double *s, double *c) { |