diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2006-06-15 09:45:12 +0200 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2006-06-15 09:45:12 +0200 |
commit | b7a3e4c9b33f72ae447f99c0c765f24fce988142 (patch) | |
tree | 81c1009d2f0b4e667b6bfb94a2a938d64471740b | |
parent | 556ddc9c41020271e92389a3900d097ec443c625 (diff) |
Fix some implicit function declarations.
-rw-r--r-- | src/radeon.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/radeon.h b/src/radeon.h index 1af9f53c..78150ce2 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -38,6 +38,9 @@ #ifndef _RADEON_H_ #define _RADEON_H_ +#include <stdlib.h> /* For abs() */ +#include <unistd.h> /* For usleep() */ + #include "xf86str.h" #include "compiler.h" #include "xf86fbman.h" |