freebsd-ports/textproc/sml-fxp/files/patch-src-Util-utilTime.sml
Thomas Abthorpe 7542e5c15d fxp is a validating XML parser written completely in the functional
programming language SML. fxp can validate both XML 1.0 and XML 1.1
documents. It has a programming interface allowing for production of XML
applications based on fxp. It is installed with four example applications.

WWW: http://www2.informatik.tu-muenchen.de/~berlea/Fxp

PR:		ports/116572
Submitted by:	Timothy Bourke <timbob at bigpond.com>
2007-10-04 03:02:59 +00:00

13 lines
624 B
Standard ML

--- src/Util/utilTime.sml.orig Mon May 28 15:08:45 2007
+++ src/Util/utilTime.sml Mon May 28 15:09:58 2007
@@ -12,8 +12,8 @@
(*--------------------------------------------------------------------------*)
signature UtilTime =
sig
- val time : ('a -> 'b) -> 'a -> 'b * {usr:Time.time, sys:Time.time, gc:Time.time}
- val timeN : int -> ('a -> 'b) -> 'a -> 'b * {usr:Time.time, sys:Time.time, gc:Time.time}
+ val time : ('a -> 'b) -> 'a -> 'b * {usr:Time.time, sys:Time.time}
+ val timeN : int -> ('a -> 'b) -> 'a -> 'b * {usr:Time.time, sys:Time.time}
end
structure UtilTime : UtilTime =