summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/progname.c
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-11-03 19:08:40 +0000
committerKarl Berry <karl@freefriends.org>2019-11-03 19:08:40 +0000
commit2d72ac9d3223fdffbdbb31f3eba86be6c7aac2d5 (patch)
tree0b6edd6d4c258661448a1d9188722629a6d09d10 /Build/source/texk/kpathsea/progname.c
parentd8b36a4ed5d7ea7d87168e3eaff7c0af276c7069 (diff)
remove register declarations
git-svn-id: svn://tug.org/texlive/trunk@52624 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/progname.c')
-rw-r--r--Build/source/texk/kpathsea/progname.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/Build/source/texk/kpathsea/progname.c b/Build/source/texk/kpathsea/progname.c
index 545f4439250..04fc12ed62b 100644
--- a/Build/source/texk/kpathsea/progname.c
+++ b/Build/source/texk/kpathsea/progname.c
@@ -85,7 +85,7 @@
static void
ReadSymLink (char *fn, char *sym)
{
- register int n = readlink (fn, sym, BSIZE);
+ int n = readlink (fn, sym, BSIZE);
if (n < 0) {
perror (fn);
exit (1);
@@ -97,10 +97,10 @@ ReadSymLink (char *fn, char *sym)
/* Strip first component from S, and also return it in a static buffer. */
static char *
-StripFirst (register char *s)
+StripFirst (char *s)
{
static char buf[BSIZE];
- register char *s1;
+ char *s1;
/* Find the end of the first path element */
for (s1 = s; *s1 && (*s1 != '/' || s1 == s); s1++)
@@ -125,10 +125,10 @@ StripFirst (register char *s)
/* Strip last component from S, and also return it in a static buffer. */
static char *
-StripLast (register char *s)
+StripLast (char *s)
{
static char buf[BSIZE];
- register char *s1;
+ char *s1;
for (s1 = s + strlen (s); s1 > s && *s1 != '/'; s1--)
;
@@ -142,9 +142,9 @@ StripLast (register char *s)
/* Copy first path element from B to A, removing it from B. */
static void
-CopyFirst (register char *a, char *b)
+CopyFirst (char *a, char *b)
{
- register int length = strlen (a);
+ int length = strlen (a);
if (length > 0 && a[length - 1] != '/') {
a[length] = '/';