Prva inačica za buster
[sysadmin-cn.git] / test.c
1 #include <stdio.h>
2 #include <sys/types.h>
3 #include <sys/stat.h>
4 #include <sys/quota.h>
5
6 #define MAXDIR (1024)
7
8 int main(void)
9 {
10     struct passwd *pwd;
11     struct dqblk qval;
12 #if defined(__SVR4)
13     struct quotctl qstr;
14     struct stat statbuf;
15 #elif defined(ultrix)
16     struct stat statbuf;
17 #elif defined(__linux__)
18     struct stat statbuf;
19     struct mntent *mntp;
20     FILE *fp;
21     int dev;
22     char devname[MAXDIR], greska[MAXDIR];
23     devname[0] = '\0';
24 #endif
25
26     int soft, hard;
27     return 0;
28 }