1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-16 03:45:23 +00:00

main(void) --> int main(void) in .align test

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27272 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-07-13 11:50:48 +00:00
parent 72fa0a8931
commit 0caa345a69

2
configure vendored
View File

@ -2410,7 +2410,7 @@ echocheck ".align is a power of two"
if test "$_asmalign_pot" = auto ; then
_asmalign_pot=no
cat > $TMPC << EOF
main(void) { asm (".align 3"); }
int main(void) { asm (".align 3"); }
EOF
cc_check && _asmalign_pot=yes
fi