1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-23 21:35:11 +03:00

fix offsetof() build issue with recent glibc

This commit is contained in:
Kay Sievers 2006-05-01 20:36:21 +02:00
parent 5263fb3464
commit 9571122e00
3 changed files with 5 additions and 6 deletions

View File

@ -18,10 +18,6 @@
*
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <sys/un.h>
#include <time.h>
#include <errno.h>
#include <stdio.h>
@ -29,7 +25,10 @@
#include <stddef.h>
#include <string.h>
#include <unistd.h>
#include <linux/stddef.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <sys/un.h>
#include "udev.h"
#include "udevd.h"

View File

@ -21,6 +21,7 @@
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>

View File

@ -30,7 +30,6 @@
#include <sys/socket.h>
#include <sys/wait.h>
#include <sys/un.h>
#include <linux/stddef.h>
#include "udev.h"
#include "udevd.h"