Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
e5af4a11
Commit
e5af4a11
authored
Nov 20, 2007
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
main() --> main(void)
Originally committed as revision 11069 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
db817cf3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
configure
configure
+5
-5
No files found.
configure
View file @
e5af4a11
...
...
@@ -442,7 +442,7 @@ EOF
check_ldflags
(){
log check_ldflags
"
$@
"
check_ld
"
$@
"
<<
EOF
&& add_ldflags "
$@
"
int main(){
int main(
void
){
return 0;
}
EOF
...
...
@@ -467,7 +467,7 @@ check_func(){
disable
$func
check_ld
"
$@
"
<<
EOF
&& enable
$func
extern int
$func
();
int main(){
int main(
void
){
$func
();
}
EOF
...
...
@@ -486,7 +486,7 @@ check_func2(){
done
check_ld
"
$@
"
<<
EOF
&& enable
$func
$incs
int main(){
int main(
void
){
(void)
$func
;
return 0;
}
...
...
@@ -535,7 +535,7 @@ check_exec_crash(){
static void sighandler(int sig){
raise(SIGTERM);
}
int main(){
int main(
void
){
signal(SIGILL, sighandler);
signal(SIGFPE, sighandler);
signal(SIGSEGV, sighandler);
...
...
@@ -1391,7 +1391,7 @@ rm $TMPE
# compiler sanity check
check_exec
<<
EOF
int main(){
int main(
void
){
return 0;
}
EOF
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment