From 13aa9b129841e87e1d552b4be13270b887f0ab0a Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 10 Jan 2016 16:24:48 -0500 Subject: argv.h: main(): fix signatures. --- src/mdso.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mdso.c') diff --git a/src/mdso.c b/src/mdso.c index 3d92d67..5cbcfce 100644 --- a/src/mdso.c +++ b/src/mdso.c @@ -38,7 +38,7 @@ static int mdso_exit(struct mdso_driver_ctx * dctx, int nerrors) return nerrors ? 2 : 0; } -int mdso_main(int argc, const char ** argv, const char ** envp) +int mdso_main(int argc, char ** argv, char ** envp) { int ret; struct mdso_driver_ctx * dctx; @@ -71,7 +71,7 @@ int mdso_main(int argc, const char ** argv, const char ** envp) #ifndef MDSO_IN_A_BOX -int main(int argc, const char ** argv, const char ** envp) +int main(int argc, char ** argv, char ** envp) { return mdso_main(argc,argv,envp); } -- cgit v1.2.3