summaryrefslogtreecommitdiffstats
path: root/contrib/binutils/gas/depend.c
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2004-06-16 05:45:41 +0000
committerobrien <obrien@FreeBSD.org>2004-06-16 05:45:41 +0000
commit2504df11e1275f63f4c53377bf91eee996360cb5 (patch)
tree04848ae93445e503c4190ca1748abe15eabc9e11 /contrib/binutils/gas/depend.c
parent6b4c52b743ec5e2e9f65d42b517feefad5017901 (diff)
downloadFreeBSD-src-2504df11e1275f63f4c53377bf91eee996360cb5.zip
FreeBSD-src-2504df11e1275f63f4c53377bf91eee996360cb5.tar.gz
Import of Binutils from the FSF 2.15 branch (just post-.0 release).
These bits are taken from the FSF anoncvs repo on 23-May-2004 04:41:00 UTC.
Diffstat (limited to 'contrib/binutils/gas/depend.c')
-rw-r--r--contrib/binutils/gas/depend.c21
1 files changed, 7 insertions, 14 deletions
diff --git a/contrib/binutils/gas/depend.c b/contrib/binutils/gas/depend.c
index 3c6049d..127c819 100644
--- a/contrib/binutils/gas/depend.c
+++ b/contrib/binutils/gas/depend.c
@@ -35,8 +35,8 @@ static struct dependency * dep_chain = NULL;
/* Current column in output file. */
static int column = 0;
-static int quote_string_for_make PARAMS ((FILE *, char *));
-static void wrap_output PARAMS ((FILE *, char *, int));
+static int quote_string_for_make (FILE *, char *);
+static void wrap_output (FILE *, char *, int);
/* Number of columns allowable. */
#define MAX_COLUMNS 72
@@ -45,8 +45,7 @@ static void wrap_output PARAMS ((FILE *, char *, int));
never called, then dependency tracking is simply skipped. */
void
-start_dependencies (filename)
- char *filename;
+start_dependencies (char *filename)
{
dep_file = filename;
}
@@ -54,8 +53,7 @@ start_dependencies (filename)
/* Noticed a new filename, so try to register it. */
void
-register_dependency (filename)
- char *filename;
+register_dependency (char *filename)
{
struct dependency *dep;
@@ -81,9 +79,7 @@ register_dependency (filename)
This code is taken from gcc with only minor changes. */
static int
-quote_string_for_make (file, src)
- FILE *file;
- char *src;
+quote_string_for_make (FILE *file, char *src)
{
char *p = src;
int i = 0;
@@ -145,10 +141,7 @@ quote_string_for_make (file, src)
wrapping as necessary. */
static void
-wrap_output (f, string, spacer)
- FILE *f;
- char *string;
- int spacer;
+wrap_output (FILE *f, char *string, int spacer)
{
int len = quote_string_for_make (NULL, string);
@@ -186,7 +179,7 @@ wrap_output (f, string, spacer)
/* Print dependency file. */
void
-print_dependencies ()
+print_dependencies (void)
{
FILE *f;
struct dependency *dep;
OpenPOWER on IntegriCloud