00001 /* 00002 * $Id$ 00003 * 00004 * pam_kmux - Linux PAM Module to change passwords simultaneously on multiple databases. 00005 * 00006 * Copyright (C) 2010 Julian Thome 00007 * 00008 * This program is free software; you can redistribute it and/or modify it under the terms of 00009 * the GNU General Public License as published by the Free Software Foundation; 00010 * either version 3 of the License, or (at your option) any later version. 00011 * 00012 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 00013 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00014 * See the GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License along with this program; 00017 * if not, see <http://www.gnu.org/licenses/>. 00018 */ 00019 00026 #ifndef __COMMON_H 00027 #define __COMMON_H 00028 00029 #define _POSIX_C_SOURCE 200112L 00030 #ifndef _XOPEN_SOURCE 00031 #define _XOPEN_SOURCE 600 00032 #endif 00033 00034 #include <ctype.h> 00035 #include <errno.h> 00036 #include <mhash.h> 00037 #include <netdb.h> 00038 #include <stdarg.h> 00039 #include <stdbool.h> 00040 #include <stdio.h> 00041 #include <stdlib.h> 00042 #include <string.h> 00043 #include <string.h> 00044 #include <syslog.h> 00045 #include <sys/time.h> 00046 #include <sys/types.h> 00047 #include <sys/cdefs.h> 00048 #include <sys/stat.h> 00049 #include <time.h> 00050 #include <unistd.h> 00051 00052 #endif
1.6.3