#endif /* DMALLOC */
#ifdef L_xstrdup
-extern char * bb_xstrdup (const char *s) {
+char * bb_xstrdup (const char *s)
+{
char *t;
if (s == NULL)
#endif
#ifdef L_xstrndup
-extern char * bb_xstrndup (const char *s, int n) {
+char * bb_xstrndup (const char *s, int n)
+{
char *t;
if (s == NULL)
return 1;
}
-static int fuser_find_socket_dev(dev_t *dev) {
+static int fuser_find_socket_dev(dev_t *dev)
+{
int fd = socket(PF_INET, SOCK_DGRAM,0);
struct stat buf;
return 1;
}
-static int fuser_print_pid_list(pid_list *plist) {
+static int fuser_print_pid_list(pid_list *plist)
+{
pid_list *curr = plist;
if(plist == NULL) return 0;
return 1;
}
-static int fuser_kill_pid_list(pid_list *plist, int sig) {
+static int fuser_kill_pid_list(pid_list *plist, int sig)
+{
pid_list *curr = plist;
pid_t mypid = getpid();
int success = 1;
return success;
}
-extern int fuser_main(int argc, char **argv) {
+int fuser_main(int argc, char **argv)
+{
int port, i, optn;
int* fni; /* file name indexes of argv */
int fnic = 0; /* file name index count */