diff options
author | Måns Rullgård <mans@mansr.com> | 2006-12-06 20:31:39 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-12-06 20:31:39 +0000 |
commit | c48e633b9e5186e3d07a636fb97ec160103ee1f2 (patch) | |
tree | 598caa8883e4b0229bf2ba003d9b6b4ce2e65f3b /libavutil/common.h | |
parent | 68a432cf14020914c6379935e36c39a9908ab554 (diff) | |
download | ffmpeg-c48e633b9e5186e3d07a636fb97ec160103ee1f2.tar.gz |
remove 'restrict' definition, it is always #defined in config.h
Originally committed as revision 7237 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/common.h')
-rw-r--r-- | libavutil/common.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavutil/common.h b/libavutil/common.h index a602ea7fac..4413129927 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -47,11 +47,6 @@ # include <math.h> #endif /* HAVE_AV_CONFIG_H */ -/* Suppress restrict if it was not defined in config.h. */ -#ifndef restrict -# define restrict -#endif - #ifndef always_inline #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0) # define always_inline __attribute__((always_inline)) inline |