mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-14 18:45:48 +07:00
rename udev_libc_wrapper -> udev_sysdeps
This commit is contained in:
parent
aa9a49b4b3
commit
dbd16d2684
4
Makefile
4
Makefile
@ -59,7 +59,7 @@ HEADERS = \
|
||||
udevd.h \
|
||||
udev_rules.h \
|
||||
logging.h \
|
||||
udev_libc_wrapper.h \
|
||||
udev_sysdeps.h \
|
||||
udev_selinux.h \
|
||||
list.h
|
||||
|
||||
@ -75,7 +75,7 @@ UDEV_OBJS = \
|
||||
udev_utils_string.o \
|
||||
udev_utils_file.o \
|
||||
udev_utils_run.o \
|
||||
udev_libc_wrapper.o
|
||||
udev_sysdeps.o
|
||||
LIBUDEV = libudev.a
|
||||
|
||||
MAN_PAGES = \
|
||||
|
2
udev.h
2
udev.h
@ -27,7 +27,7 @@
|
||||
|
||||
#include "list.h"
|
||||
#include "logging.h"
|
||||
#include "udev_libc_wrapper.h"
|
||||
#include "udev_sysdeps.h"
|
||||
#include "udev_version.h"
|
||||
|
||||
#define COMMENT_CHARACTER '#'
|
||||
|
@ -1,9 +1,8 @@
|
||||
/*
|
||||
* udev_libc_wrapper - wrapping of functions missing in a specific libc
|
||||
* or not working in a statically compiled binary
|
||||
* udev_sysdeps.c - wrapping of libc features and kernel defines
|
||||
*
|
||||
* Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
|
||||
* Copyright (C) 2005 Kay Sievers <kay@vrfy.org>
|
||||
* Copyright (C) 2005-2006 Kay Sievers <kay.sievers@vrfy.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
@ -1,8 +1,7 @@
|
||||
/*
|
||||
* udev_libc_wrapper - wrapping of functions missing in a specific libc
|
||||
* or not working in a statically compiled binary
|
||||
* udev_sysdeps.h - wrapping of libc features and kernel defines
|
||||
*
|
||||
* Copyright (C) 2005 Kay Sievers <kay.sievers@vrfy.org>
|
||||
* Copyright (C) 2005-2006 Kay Sievers <kay.sievers@vrfy.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
@ -19,8 +18,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _UDEV_LIBC_WRAPPER_H_
|
||||
#define _UDEV_LIBC_WRAPPER_H_
|
||||
#ifndef _UDEV_SYSDEPS_H_
|
||||
#define _UDEV_SYSDEPS_H_
|
||||
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
@ -169,4 +168,4 @@ extern gid_t lookup_group(const char *group);
|
||||
extern size_t strlcpy(char *dst, const char *src, size_t size);
|
||||
extern size_t strlcat(char *dst, const char *src, size_t size);
|
||||
|
||||
#endif /* _UDEV_LIBC_WRAPPER_H_ */
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user