Deleted Added
full compact
perform.c (49300) perform.c (49637)
1#ifndef lint
2static const char rcsid[] =
1#ifndef lint
2static const char rcsid[] =
3 "$Id: perform.c,v 1.26 1998/12/16 13:59:31 jkh Exp $";
3 "$Id: perform.c,v 1.27 1999/07/30 23:14:15 jdp Exp $";
4#endif
5
6/*
7 * FreeBSD install - a package for the installation and maintainance
8 * of non-core utilities.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions

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

23 *
24 */
25
26#include "lib.h"
27#include "info.h"
28
29#include <fts.h>
30#include <signal.h>
4#endif
5
6/*
7 * FreeBSD install - a package for the installation and maintainance
8 * of non-core utilities.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions

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

23 *
24 */
25
26#include "lib.h"
27#include "info.h"
28
29#include <fts.h>
30#include <signal.h>
31#include <err.h>
31
32static int fname_cmp(const FTSENT **, const FTSENT **);
33static int pkg_do(char *);
34
35int
36pkg_perform(char **pkgs)
37{
38 int i, err_cnt = 0;

--- 193 unchanged lines hidden ---
32
33static int fname_cmp(const FTSENT **, const FTSENT **);
34static int pkg_do(char *);
35
36int
37pkg_perform(char **pkgs)
38{
39 int i, err_cnt = 0;

--- 193 unchanged lines hidden ---