Implement new primitive OS2-COPY-FILE.
authorChris Hanson <org/chris-hanson/cph>
Fri, 27 Oct 1995 23:58:11 +0000 (23:58 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 27 Oct 1995 23:58:11 +0000 (23:58 +0000)
v7/src/microcode/pros2fs.c

index ecea32c39403a94d3df1eb4175aff152853a55e1..a7115e2511420fd55b24571caea0e195a5f795c5 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: pros2fs.c,v 1.6 1995/04/23 02:44:25 cph Exp $
+$Id: pros2fs.c,v 1.7 1995/10/27 23:58:11 cph Exp $
 
 Copyright (c) 1994-95 Massachusetts Institute of Technology
 
@@ -420,3 +420,9 @@ DEFINE_PRIMITIVE ("OS2-DAYLIGHT-SAVINGS-TIME?", Prim_OS2_dst_p, 0, 0, 0)
   PRIMITIVE_HEADER (0);
   PRIMITIVE_RETURN (BOOLEAN_TO_OBJECT (OS2_daylight_savings_p ()));
 }
+
+DEFINE_PRIMITIVE ("OS2-COPY-FILE", Prim_os2_copy_file, 2, 2, 0)
+{
+  PRIMITIVE_HEADER (2);
+  STD_API_CALL (dos_copy, (STRING_ARG (1)), (STRING_ARG (2)), DCPY_EXISTING)
+}