diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-12-10 00:04:32 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-12-10 00:05:02 -0800 |
commit | 7a580ac13fce90353ccbef53c559bbf1ba778831 (patch) | |
tree | e9ca062fe5ff1b06445ecc35c0c9f35eb252e46a | |
parent | cf08b277a983a97a3db1ee39eeeb6bf953d084db (diff) |
Make System() prototype for Solaris in xsm.h actually a prototype
Fixes gcc warning:
xsm.h:217: warning: function declaration isn't a prototype
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | xsm.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -214,7 +214,7 @@ extern FILE *fdopen(int, char const *); #endif #if defined(sun) && defined(SVR4) -extern int System(); +extern int System(char *s); #define system(s) System(s) #endif |