| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1/root/usr/include/dovecot/ |
Upload File : |
#ifndef QUOTA_FS_H #define QUOTA_FS_H #if defined (HAVE_STRUCT_DQBLK_CURBLOCKS) || \ defined (HAVE_STRUCT_DQBLK_CURSPACE) # define HAVE_FS_QUOTA #endif #ifdef HAVE_QUOTA_OPEN /* absolute path to avoid confusion with ./quota.h */ # include "/usr/include/quota.h" /* NetBSD with libquota */ #endif #ifdef HAVE_SYS_QUOTA_H # include <sys/quota.h> /* Linux, HP-UX */ #elif defined(HAVE_SYS_FS_UFS_QUOTA_H) # include <sys/fs/ufs_quota.h> /* Solaris */ #elif defined(HAVE_UFS_UFS_QUOTA_H) # include <ufs/ufs/quota.h> /* BSDs */ #elif defined(HAVE_JFS_QUOTA_H) # include <jfs/quota.h> /* AIX */ # ifdef HAVE_SYS_FS_QUOTA_COMMON_H # include <sys/fs/quota_common.h> /* quotactl() */ # endif #else # undef HAVE_FS_QUOTA #endif #ifdef HAVE_QUOTACTL # ifdef HAVE_SYS_QUOTA_H # ifndef _HPUX_SOURCE # define FS_QUOTA_LINUX # else # define FS_QUOTA_HPUX # endif # else # define FS_QUOTA_BSDAIX # endif #elif defined (HAVE_Q_QUOTACTL) # define FS_QUOTA_SOLARIS #else # undef HAVE_FS_QUOTA #endif #ifdef HAVE_QUOTA_OPEN /* NetBSD with libquota */ # define FS_QUOTA_NETBSD # define HAVE_FS_QUOTA # undef FS_QUOTA_LINUX /* obtained because we also have <sys/quota.h> */ #endif #endif