Deleted Added
full compact
number.c (23726) number.c (28979)
1/*
2 * Copyright (c) 1988, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

86int
87main(argc, argv)
88 int argc;
89 char *argv[];
90{
91 int ch, first;
92 char line[256];
93
1/*
2 * Copyright (c) 1988, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

86int
87main(argc, argv)
88 int argc;
89 char *argv[];
90{
91 int ch, first;
92 char line[256];
93
94 /* revoke */
95 setegid(getgid());
96 setgid(getgid());
97
94 lflag = 0;
95 while ((ch = getopt(argc, argv, "l")) != EOF)
96 switch (ch) {
97 case 'l':
98 lflag = 1;
99 break;
100 case '?':
101 default:

--- 191 unchanged lines hidden ---
98 lflag = 0;
99 while ((ch = getopt(argc, argv, "l")) != EOF)
100 switch (ch) {
101 case 'l':
102 lflag = 1;
103 break;
104 case '?':
105 default:

--- 191 unchanged lines hidden ---