diff options
author | Kai Wasserbäch <[email protected]> | 2011-08-27 17:51:58 +0200 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-08-29 08:03:04 -0600 |
commit | 066875f340dd6160b60cc7d205faf3a496581220 (patch) | |
tree | 655e9888d1a395ee1d6dc8f96d94b177aabbdfe7 /src/gallium/tests | |
parent | a546acdaf456b39c4f238a09a15b397994acb9cd (diff) |
tests/unit: Fix include style
As explained in the thread starting at [0], the internal include style
should be »#include "path/to/header.h"« for non-system includes.
[0]
<http://news.gmane.org/find-root.php?message_id=%3c4E5802BE.6020206%40vmware.com%3e>
Signed-off-by: Kai Wasserbäch <[email protected]>
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/tests')
-rw-r--r-- | src/gallium/tests/unit/translate_test.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/tests/unit/translate_test.c b/src/gallium/tests/unit/translate_test.c index 2976fb79227..b9e7e25b29a 100644 --- a/src/gallium/tests/unit/translate_test.c +++ b/src/gallium/tests/unit/translate_test.c @@ -24,11 +24,11 @@ **************************************************************************/ #include <stdio.h> -#include <translate/translate.h> -#include <util/u_memory.h> -#include <util/u_format.h> -#include <util/u_cpu_detect.h> -#include <rtasm/rtasm_cpu.h> +#include "translate/translate.h" +#include "util/u_memory.h" +#include "util/u_format.h" +#include "util/u_cpu_detect.h" +#include "rtasm/rtasm_cpu.h" /* don't use this for serious use */ static double rand_double() |