[project @ 1998-11-26 09:17:22 by sof]
[ghc-hetmet.git] / ghc / runtime / gmp / move.c
1 /* move -- BSD compatible assignment.
2
3 Copyright (C) 1991 Free Software Foundation, Inc.
4
5 This file is part of the GNU MP Library.
6
7 The GNU MP Library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 The GNU MP Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with the GNU MP Library; see the file COPYING.  If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
20
21 #include "mp.h"
22 #include "gmp.h"
23 #include "gmp-impl.h"
24
25 void
26 #ifdef __STDC__
27 move (const MINT *u, MINT *w)
28 #else
29 move (u, w)
30      const MINT *u;
31      MINT *w;
32 #endif
33 {
34   mp_size usize;
35   mp_size abs_usize;
36
37   usize = u->size;
38   abs_usize = ABS (usize);
39
40   if (w->alloc < abs_usize)
41     _mpz_realloc (w, abs_usize);
42
43   w->size = usize;
44   MPN_COPY (w->d, u->d, abs_usize);
45 }