Remove rcsid: Unused since move to Git

* While technically Git can support $ID keywords, in practice they are not
  used.
* GCC now give a warning about ''rcsid' defined but not used' for some
  of those.

Let's just remove the unused rcsid.
This commit is contained in:
Tzafrir Cohen 2016-01-26 15:12:30 +02:00
parent 212b247e68
commit f105a09eda
4 changed files with 0 additions and 8 deletions

View File

@ -45,7 +45,6 @@
#define BLOCK_SIZE 2041
#define DEVICE "/dev/dahdi/channel"
static const char rcsid[] = "$Id$";
char *prog_name;
static void usage(void)
@ -53,7 +52,6 @@ static void usage(void)
fprintf(stderr, "Usage: %s <dahdi_chan>\n", prog_name);
fprintf(stderr, " e.g.: %s /dev/dahdi/55\n", prog_name);
fprintf(stderr, " %s 455\n", prog_name);
fprintf(stderr, "%s version %s\n", prog_name, rcsid);
exit(1);
}

View File

@ -44,7 +44,6 @@
#define BLOCK_SIZE 2039
#define DEVICE "/dev/dahdi/channel"
static const char rcsid[] = "$Id$";
char *prog_name;
static void usage(void)
@ -52,7 +51,6 @@ static void usage(void)
fprintf(stderr, "Usage: %s <dahdi_chan>\n", prog_name);
fprintf(stderr, " e.g.: %s /dev/dahdi/55\n", prog_name);
fprintf(stderr, " %s 455\n", prog_name);
fprintf(stderr, "%s version %s\n", prog_name, rcsid);
exit(1);
}

View File

@ -36,8 +36,6 @@
#include "astribank.h"
#include "astribank_license.h"
static const char rcsid[] = "$Id$";
#define DBG_MASK 0x80
static char *progname;

View File

@ -28,8 +28,6 @@
#include <ctype.h>
#include "hexfile.h"
static const char rcsid[] = "$Id$";
static parse_hexfile_report_func_t report_func = NULL;
parse_hexfile_report_func_t parse_hexfile_set_reporting(parse_hexfile_report_func_t rf)