diff options
author | greg@kroah.com <greg@kroah.com> | 2004-02-02 08:29:04 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:20 -0700 |
commit | 0be0c18de37b463f40c649f1b66b7683f2bf836b (patch) | |
tree | bdd8747d1ff40fab7b8ac4f4ab1c1cb28727f4ff /udevsend.c | |
parent | 62e156af9438bfd6404de3e359a890286cb49479 (diff) |
[PATCH] udevsend now almost compiles with klibc, struct sockaddr_un is only problem now.
Diffstat (limited to 'udevsend.c')
-rw-r--r-- | udevsend.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/udevsend.c b/udevsend.c index 6af9df7704..415207d8ca 100644 --- a/udevsend.c +++ b/udevsend.c @@ -23,17 +23,15 @@ */ #include <sys/types.h> -#include <sys/ipc.h> -#include <sys/msg.h> +#include <sys/socket.h> +#include <sys/wait.h> +#include <sys/un.h> #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <time.h> -#include <wait.h> -#include <sys/socket.h> -#include <sys/un.h> #include "udev.h" #include "udev_version.h" |