Imported from ../bash-2.05a.tar.gz.
[platform/upstream/bash.git] / builtins / alias.def
index 50e7ffc..e279d4d 100644 (file)
@@ -51,8 +51,7 @@ $END
 #  include "common.h"
 #  include "bashgetopt.h"
 
-extern int interactive;
-static void print_alias ();
+static void print_alias __P((alias_t *));
 
 /* Hack the alias command in a Korn shell way. */
 int
@@ -198,7 +197,7 @@ print_alias (alias)
 {
   char *value;
 
-  value = single_quote (alias->value);
+  value = sh_single_quote (alias->value);
   printf ("alias %s=%s\n", alias->name, value);
   free (value);