diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2016-05-06 01:47:28 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2016-05-06 01:47:28 +0000 |
commit | fcef5f472bbdcce7a6ac989555fc5795e37c8030 (patch) | |
tree | c4e77f1705f1e4b47928c4ed0c85a20dac3b3bdd | |
parent | 6bab5c3b8764a848cf53a414816fba270abfda94 (diff) | |
download | netpbm-mirror-fcef5f472bbdcce7a6ac989555fc5795e37c8030.tar.gz netpbm-mirror-fcef5f472bbdcce7a6ac989555fc5795e37c8030.tar.xz netpbm-mirror-fcef5f472bbdcce7a6ac989555fc5795e37c8030.zip |
Add comments
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2756 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r-- | lib/libsystem.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libsystem.c b/lib/libsystem.c index 77f874cb..80f51256 100644 --- a/lib/libsystem.c +++ b/lib/libsystem.c @@ -456,8 +456,11 @@ pm_system_lp(const char * const progName, void * const accepterParm, ...) { /*---------------------------------------------------------------------------- - same as pm_system_vp() except with arguments as variable arguments + Same as pm_system_vp() except with arguments as variable arguments instead of an array. + + N.B. the first variable argument is the program's arg 0; the last + variable argument must be NULL. -----------------------------------------------------------------------------*/ va_list args; bool endOfArgs; |