rep_node.c (littleutils-1.2.4.tar.lz) | : | rep_node.c (littleutils-1.2.5.tar.lz) | ||
---|---|---|---|---|
/* rep_node: Eliminates duplicate files based on filenode. Utilizes the output | /* rep_node: Eliminates duplicate files based on filenode. Utilizes the output | |||
of the filenode command. | of the filenode command. | |||
Copyright (C) 2005-2020 by Brian Lindholm. | Copyright (C) 2005-2021 by Brian Lindholm. | |||
This file is part of the littleutils utility set. | This file is part of the littleutils utility set. | |||
The rep_node utility is free software; you can redistribute it and/or modify | The rep_node utility is free software; you can redistribute it and/or modify | |||
it under the terms of the GNU General Public License as published by the | it under the terms of the GNU General Public License as published by the | |||
Free Software Foundation; either version 3, or (at your option) any later | Free Software Foundation; either version 3, or (at your option) any later | |||
version. | version. | |||
The rep_node utility is distributed in the hope that it will be useful, but | The rep_node utility is distributed in the hope that it will be useful, but | |||
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | |||
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |||
more details. | more details. | |||
You should have received a copy of the GNU General Public License along with | You should have received a copy of the GNU General Public License along with | |||
the littleutils. If not, see <https://www.gnu.org/licenses/>. */ | the littleutils. If not, see <https://www.gnu.org/licenses/>. */ | |||
#include <config.h> | #include <config.h> | |||
#include <stdio.h> | #ifdef HAVE_STDIO_H | |||
# include <stdio.h> | ||||
#endif | ||||
#ifdef HAVE_STDLIB_H | #ifdef HAVE_STDLIB_H | |||
# include <stdlib.h> | # include <stdlib.h> | |||
#endif | #endif | |||
#ifdef HAVE_STRING_H | #ifdef HAVE_STRING_H | |||
# include <string.h> | # include <string.h> | |||
#endif | #endif | |||
#ifndef LINE_MAX | #ifndef LINE_MAX | |||
# define LINE_MAX 8192 | # define LINE_MAX 8192 | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 4 lines changed or added |