Commit f029bc6c authored by diego's avatar diego

Simplify preprocessor directives.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10181 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4ddb837d
......@@ -28,12 +28,11 @@
#ifdef CONFIG_DARWIN
#include <sys/sysctl.h>
#else /* CONFIG_DARWIN */
#ifdef __AMIGAOS4__
#elif __AMIGAOS4__
#include <exec/exec.h>
#include <interfaces/exec.h>
#include <proto/exec.h>
#else /* __AMIGAOS4__ */
#else
#include <signal.h>
#include <setjmp.h>
......@@ -51,7 +50,6 @@ static void sigill_handler (int sig)
siglongjmp (jmpbuf, 1);
}
#endif /* CONFIG_DARWIN */
#endif /* __AMIGAOS4__ */
int sad16_x2_altivec(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment