#include <sys/param.h>
#include <unistd.h>
#include <fcntl.h>
#include <dirent.h>
#include <limits.h>
#include <selinux/selinux.h>
#include <selinux/label.h>
#include "rpmio/rpmutil.h"
#include <locale.h>
#include <libintl.h>
#include "misc/glob.h"
#include "misc/fnmatch.h"
#include <dlfcn.h>
Go to the source code of this file.
Defines | |
#define | getenv(_s) __secure_getenv(_s) |
#define | NLENGTH(direct) (strlen((direct)->d_name)) |
#define | PATH_MAX 256 |
#define | xmalloc(_size) rmalloc((_size)) |
#define | xcalloc(_nmemb, _size) rcalloc((_nmemb), (_size)) |
#define | xrealloc(_ptr, _size) rrealloc((_ptr), (_size)) |
#define | xstrdup(_str) rstrdup((_str)) |
#define | _free(_ptr) rfree((_ptr)) |
#define | __progname program_name |
#define | setprogname(pn) |
#define | _(Text) dgettext (PACKAGE, Text) |
#define | N_(Text) Text |
Variables | |
char ** | environ |
const char * | program_name |
Definition in file system.h.
#define _ | ( | Text | ) | dgettext (PACKAGE, Text) |
Definition at line 130 of file system.h.
Referenced by argerror(), build(), buildArgCallback(), buildForTarget(), checkPassPhrase(), checkSpec(), doSign(), getTarSpec(), initPipe(), isSpecFile(), main(), printBanner(), and printVersion().
#define __progname program_name |
Definition at line 118 of file system.h.
Referenced by argerror(), and main().
#define setprogname | ( | pn | ) |
{ if ((__progname = strrchr(pn, '/')) != NULL) __progname++; \ else __progname = pn; \ }
Definition at line 119 of file system.h.
Referenced by main().
#define xcalloc | ( | _nmemb, | |||
_size | ) | rcalloc((_nmemb), (_size)) |
#define xmalloc | ( | _size | ) | rmalloc((_size)) |
#define xrealloc | ( | _ptr, | |||
_size | ) | rrealloc((_ptr), (_size)) |
#define xstrdup | ( | _str | ) | rstrdup((_str)) |
Definition at line 108 of file system.h.
Referenced by buildArgCallback(), and buildForTarget().
char** environ |
Definition at line 9 of file rpmdb.c.
Referenced by checkPassPhrase().
const char* program_name |