diff options
Diffstat (limited to 'maccaml/misc.c')
-rw-r--r-- | maccaml/misc.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/maccaml/misc.c b/maccaml/misc.c new file mode 100644 index 000000000..8f2c09872 --- /dev/null +++ b/maccaml/misc.c @@ -0,0 +1,22 @@ +/***********************************************************************/ +/* */ +/* Objective Caml */ +/* */ +/* Damien Doligez, projet Para, INRIA Rocquencourt */ +/* */ +/* Copyright 1998 Institut National de Recherche en Informatique et */ +/* en Automatique. Distributed only by permission */ +/* */ +/***********************************************************************/ + +/* $Id$ */ + +#include "main.h" + +void LocalToGlobalRect (Rect *r) +{ + Point *p = (Point *) r; + + LocalToGlobal (&p[0]); + LocalToGlobal (&p[1]); +} |