Re-generate utils.c

This commit is contained in:
Pierre Pronchery 2017-01-31 16:25:50 +01:00
parent 869f4dfea8
commit 3d295804c0

View File

@ -1,5 +1,5 @@
/* $Id$ */ /* $Id$ */
/* Copyright (c) 2011 Pierre Pronchery <khorben@defora.org> */ /* Copyright (c) 2017 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS Unix utils */ /* This file is part of DeforaOS Unix utils */
/* This program is free software: you can redistribute it and/or modify /* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -258,6 +258,21 @@
#undef _prefs_parse #undef _prefs_parse
#undef _find #undef _find
/* grep.c */
#define main _grep_main
#define _usage _grep_usage
#define _Prefs _grep_Prefs
#define Prefs grep_Prefs
#define _prefs_parse _grep_prefs_parse
#define _grep __grep
#include "../src/grep.c"
#undef main
#undef _usage
#undef _Prefs
#undef Prefs
#undef _prefs_parse
#undef _grep
/* head.c */ /* head.c */
#define main _head_main #define main _head_main
#define _usage _head_usage #define _usage _head_usage
@ -773,6 +788,7 @@ Call calls[] =
{ "false", _false_main }, { "false", _false_main },
{ "file", _file_main }, { "file", _file_main },
{ "find", _find_main }, { "find", _find_main },
{ "grep", _grep_main },
{ "head", _head_main }, { "head", _head_main },
{ "id", _id_main }, { "id", _id_main },
{ "kill", _kill_main }, { "kill", _kill_main },