BSD 4_4_Lite2 release
[unix-history] / usr / src / bin / sh / expand.h
index 5c6758f..ee318d9 100644 (file)
@@ -33,7 +33,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *     @(#)expand.h    8.1 (Berkeley) 5/31/93
+ *     @(#)expand.h    8.2 (Berkeley) 5/4/95
  */
 
 struct strlist {
  */
 
 struct strlist {
@@ -57,17 +57,10 @@ struct arglist {
 #define EXP_CASE       0x10    /* keeps quotes around for CASE pattern */
 
 
 #define EXP_CASE       0x10    /* keeps quotes around for CASE pattern */
 
 
-#ifdef __STDC__
 union node;
 union node;
-void expandarg(union node *, struct arglist *, int);
-void expandhere(union node *, int);
-int patmatch(char *, char *);
-void rmescapes(char *);
-int casematch(union node *, char *);
-#else
-void expandarg();
-void expandhere();
-int patmatch();
-void rmescapes();
-int casematch();
-#endif
+void expandhere __P((union node *, int));
+void expandarg __P((union node *, struct arglist *, int));
+void expari __P((int));
+int patmatch __P((char *, char *));
+void rmescapes __P((char *));
+int casematch __P((union node *, char *));