commit f10d4f047da4eb78ccb7d102e5757a97aa6a7120
parent ee643349eedf014d5275bd38a4c7ffcf5719e148
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Wed, 13 Sep 2017 16:25:30 +0100
[lib] Update the sccsid strings after the big makefile change
All the paths in the sccsid strings were wrong after that
change.
Diffstat:
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/lib/scc/alloc.c b/lib/scc/alloc.c
@@ -1,4 +1,4 @@
-static char sccsid[] = "@(#) ./lib/alloc.c";
+static char sccsid[] = "@(#) ./lib/scc/alloc.c";
#include <stdlib.h>
#include "../../inc/scc.h"
diff --git a/lib/scc/debug.c b/lib/scc/debug.c
@@ -1,4 +1,4 @@
-static char sccsid[] = "@(#) ./lib/debug.c";
+static char sccsid[] = "@(#) ./lib/scc/debug.c";
#include <stdarg.h>
#include <stdio.h>
diff --git a/lib/scc/die.c b/lib/scc/die.c
@@ -1,4 +1,4 @@
-static char sccsid[] = "@(#) ./lib/die.c";
+static char sccsid[] = "@(#) ./lib/scc/die.c";
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
diff --git a/lib/scc/xcalloc.c b/lib/scc/xcalloc.c
@@ -1,4 +1,4 @@
-static char sccsid[] = "@(#) ./lib/xcalloc.c";
+static char sccsid[] = "@(#) ./lib/scc/xcalloc.c";
#include <stdlib.h>
#include "../../inc/scc.h"
diff --git a/lib/scc/xmalloc.c b/lib/scc/xmalloc.c
@@ -1,4 +1,4 @@
-static char sccsid[] = "@(#) ./lib/xmalloc.c";
+static char sccsid[] = "@(#) ./lib/scc/xmalloc.c";
#include <stdlib.h>
#include "../../inc/scc.h"
diff --git a/lib/scc/xrealloc.c b/lib/scc/xrealloc.c
@@ -1,4 +1,4 @@
-static char sccsid[] = "@(#) ./lib/xrealloc.c";
+static char sccsid[] = "@(#) ./lib/scc/xrealloc.c";
#include <stdlib.h>
#include "../../inc/scc.h"
diff --git a/lib/scc/xstrdup.c b/lib/scc/xstrdup.c
@@ -1,4 +1,4 @@
-static char sccsid[] = "@(#) ./lib/xstrdup.c";
+static char sccsid[] = "@(#) ./lib/scc/xstrdup.c";
#include <string.h>
#include "../../inc/scc.h"