diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2010-09-29 20:50:19 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2010-09-29 20:50:19 +0000 |
commit | c1b82fa06e7e88a68c877c501fc0422888920415 (patch) | |
tree | 24a89b9992a56fe452db97e8ee84879bd7218774 /lib/util/shhopt.c | |
parent | 6560f5429083c8b20a57de4ac4b368b6cce07268 (diff) | |
download | netpbm-mirror-c1b82fa06e7e88a68c877c501fc0422888920415.tar.gz netpbm-mirror-c1b82fa06e7e88a68c877c501fc0422888920415.tar.xz netpbm-mirror-c1b82fa06e7e88a68c877c501fc0422888920415.zip |
Rename remaining shhopt functions to start with 'pm_'
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1319 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib/util/shhopt.c')
-rw-r--r-- | lib/util/shhopt.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/util/shhopt.c b/lib/util/shhopt.c index d789a03b..a557fcd5 100644 --- a/lib/util/shhopt.c +++ b/lib/util/shhopt.c @@ -514,12 +514,13 @@ optExecute(optEntry const opt, char *arg, int lng) | that _must_ abort the program. */ void -optSetFatalFunc(void (*f)(const char *, ...)) -{ +pm_optSetFatalFunc(void (*f)(const char *, ...)) { + optFatal = f; } + /*------------------------------------------------------------------------ | NAME pm_optParseOptions | @@ -1008,7 +1009,7 @@ pm_optParseOptions3(int * const argc_p, char *argv[], const optStruct3 opt, void -optDestroyNameValueList(struct optNameValue * const list) { +pm_optDestroyNameValueList(struct optNameValue * const list) { unsigned int i; |