date and time created 85/09/21 15:05:56 by sam
authorSam Leffler <sam@ucbvax.Berkeley.EDU>
Sun, 22 Sep 1985 06:05:56 +0000 (22:05 -0800)
committerSam Leffler <sam@ucbvax.Berkeley.EDU>
Sun, 22 Sep 1985 06:05:56 +0000 (22:05 -0800)
SCCS-vsn: lib/libplot/imagen/point.c 5.1

usr/src/lib/libplot/imagen/point.c [new file with mode: 0644]

diff --git a/usr/src/lib/libplot/imagen/point.c b/usr/src/lib/libplot/imagen/point.c
new file mode 100644 (file)
index 0000000..c47fcca
--- /dev/null
@@ -0,0 +1,13 @@
+/*
+ * Copyright (c) 1985 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifndef lint
+static char sccsid[] = "@(#)point.c    5.1 (Berkeley) %G%";
+#endif not lint
+
+point(xi,yi){
+       line(xi,yi,xi,yi);
+}