diff options
Diffstat (limited to 'src/mp-private.h')
-rw-r--r-- | src/mp-private.h | 34 |
1 files changed, 13 insertions, 21 deletions
diff --git a/src/mp-private.h b/src/mp-private.h index f715b34..3211ea8 100644 --- a/src/mp-private.h +++ b/src/mp-private.h @@ -1,20 +1,12 @@ -/* Copyright (c) 1987-2008 Sun Microsystems, Inc. All Rights Reserved. - * Copyright (c) 2008-2009 Robert Ancell +/* + * Copyright (C) 1987-2008 Sun Microsystems, Inc. All Rights Reserved. + * Copyright (C) 2008-2009 Robert Ancell * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301, USA. + * This program is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 2 of the License, or (at your option) any later + * version. See http://www.gnu.org/copyleft/gpl.html the full text of the + * license. */ #ifndef MP_INTERNAL_H @@ -38,10 +30,10 @@ //} #define MP_T 100 -void mperr(const char* format, ...) __attribute__((format(printf, 1, 2))); -void mp_gcd(int64_t*, int64_t*); -void mp_normalize(MPNumber*); -void convert_to_radians(const MPNumber* x, MPAngleUnit unit, MPNumber* z); -void convert_from_radians(const MPNumber* x, MPAngleUnit unit, MPNumber* z); +void mperr(const char *format, ...) __attribute__((format(printf, 1, 2))); +void mp_gcd(int64_t *, int64_t *); +void mp_normalize(MPNumber *); +void convert_to_radians(const MPNumber *x, MPAngleUnit unit, MPNumber *z); +void convert_from_radians(const MPNumber *x, MPAngleUnit unit, MPNumber *z); #endif /* MP_INTERNAL_H */ |