mirror of
https://github.com/samba-team/samba.git
synced 2025-01-05 09:18:06 +03:00
a4e7bf3a89
Make MODULE handling a bit more like BINARY, LIBRARY and SUBSYSTEM
Add some more PUBLIC_HEADERS
(This used to be commit
|
||
---|---|---|
.. | ||
repdir | ||
win32 | ||
config.m4 | ||
config.mk | ||
dlfcn.c | ||
README | ||
replace.c | ||
replace.h | ||
snprintf.c |
This subsystem ensures that we can always use a certain core set of functions and types, that are either provided by the OS or by replacement functions / definitions in this subsystem. The aim is to try to stick to POSIX functions in here as much as possible. Convenience functions that are available on no platform at all belong in different subsystems (such as LIBUTIL). The following functions are guarenteed: ftruncate strlcpy strlcat mktime rename innetgr initgroups memmove strdup inet_ntoa setlinebuf vsyslog timegm setenv strtoull strtoll strndup strnlen waitpid seteuid setegid asprintf snprintf vasprintf vsnprintf opendir readdir telldir seekdir closedir dlopen dlclose dlsym dlerror chroot bzero strerror errno mkstemp (a secure one!) pread pwrite Types: socklen_t u_int{8,16,32}_t uint_t uint{8,16,32,64}_t int{8,16,32,64}_t Prerequisites: memset (for bzero) syslog (for vsyslog) setnetgrent, getnetgrent, endnetgrent (for innetgr) mktemp (for mkstemp)