Deleted Added
full compact
limits.c (200420) limits.c (200462)
1/*-
2 * Copyright (c) 1997 by
3 * David L. Nugent <davidn@blaze.net.au>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, is permitted provided that the following conditions
8 * are met:

--- 8 unchanged lines hidden (view full) ---

17 * 4. Absolutely no warranty of function or purpose is made by the authors.
18 * 5. Modifications may be freely made to this file providing the above
19 * conditions are met.
20 *
21 * Display/change(+runprogram)/eval resource limits.
22 */
23
24#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997 by
3 * David L. Nugent <davidn@blaze.net.au>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, is permitted provided that the following conditions
8 * are met:

--- 8 unchanged lines hidden (view full) ---

17 * 4. Absolutely no warranty of function or purpose is made by the authors.
18 * 5. Modifications may be freely made to this file providing the above
19 * conditions are met.
20 *
21 * Display/change(+runprogram)/eval resource limits.
22 */
23
24#include <sys/cdefs.h>
25__FBSDID("$FreeBSD: head/usr.bin/limits/limits.c 200420 2009-12-11 23:35:38Z delphij $");
25__FBSDID("$FreeBSD: head/usr.bin/limits/limits.c 200462 2009-12-13 03:14:06Z delphij $");
26
27#include <err.h>
28#include <stdio.h>
29#include <string.h>
30#include <sys/types.h>
31#include <sys/stat.h>
32#include <sys/param.h>
33#include <stdlib.h>
34#include <unistd.h>
26
27#include <err.h>
28#include <stdio.h>
29#include <string.h>
30#include <sys/types.h>
31#include <sys/stat.h>
32#include <sys/param.h>
33#include <stdlib.h>
34#include <unistd.h>
35#include <stdarg.h>
35#include <stdint.h>
36#include <ctype.h>
37#include <errno.h>
38#include <pwd.h>
39#include <login_cap.h>
40#include <sys/time.h>
41#include <sys/resource.h>
42

--- 636 unchanged lines hidden ---
36#include <stdint.h>
37#include <ctype.h>
38#include <errno.h>
39#include <pwd.h>
40#include <login_cap.h>
41#include <sys/time.h>
42#include <sys/resource.h>
43

--- 636 unchanged lines hidden ---