nfsclient/src/dirutils.c: Fix missing prototype warnings

This commit is contained in:
Joel Sherrill
2013-09-22 10:36:57 -05:00
parent 37a7c27e29
commit 40eea0015f

View File

@@ -91,6 +91,18 @@
#include <cexpHelp.h>
#endif
#ifndef __vxworks
/*
* Prototypes to avoid warnings
*/
int pwd(void);
int ls(char *dir, char *opts);
int cp(char *from, char *to, char *opts);
int ln(char *to, char *name, char *opts);
int rm(char *path);
int cd(char *path);
#endif
#ifndef __vxworks
int
pwd(void)