jdk/src/share/native/sun/security/ec/impl/mpi-priv.h

Print this page




  39  * Portions created by the Initial Developer are Copyright (C) 1998
  40  * the Initial Developer. All Rights Reserved.
  41  *
  42  * Contributor(s):
  43  *   Netscape Communications Corporation
  44  *
  45  * Alternatively, the contents of this file may be used under the terms of
  46  * either the GNU General Public License Version 2 or later (the "GPL"), or
  47  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  48  * in which case the provisions of the GPL or the LGPL are applicable instead
  49  * of those above. If you wish to allow use of your version of this file only
  50  * under the terms of either the GPL or the LGPL, and not to allow others to
  51  * use your version of this file under the terms of the MPL, indicate your
  52  * decision by deleting the provisions above and replace them with the notice
  53  * and other provisions required by the GPL or the LGPL. If you do not delete
  54  * the provisions above, a recipient may use your version of this file under
  55  * the terms of any one of the MPL, the GPL or the LGPL.
  56  *
  57  *********************************************************************** */
  58 /*
  59  * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
  60  * Use is subject to license terms.
  61  */
  62 
  63 #ifndef _MPI_PRIV_H
  64 #define _MPI_PRIV_H
  65 
  66 /* $Id: mpi-priv.h,v 1.20 2005/11/22 07:16:43 relyea%netscape.com Exp $ */
  67 
  68 #include "mpi.h"
  69 #ifndef _KERNEL
  70 #include <stdlib.h>
  71 #include <string.h>
  72 #include <ctype.h>
  73 #endif /* _KERNEL */
  74 
  75 #if MP_DEBUG
  76 #include <stdio.h>
  77 
  78 #define DIAG(T,V) {fprintf(stderr,T);mp_print(V,stderr);fputc('\n',stderr);}
  79 #else




  39  * Portions created by the Initial Developer are Copyright (C) 1998
  40  * the Initial Developer. All Rights Reserved.
  41  *
  42  * Contributor(s):
  43  *   Netscape Communications Corporation
  44  *
  45  * Alternatively, the contents of this file may be used under the terms of
  46  * either the GNU General Public License Version 2 or later (the "GPL"), or
  47  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  48  * in which case the provisions of the GPL or the LGPL are applicable instead
  49  * of those above. If you wish to allow use of your version of this file only
  50  * under the terms of either the GPL or the LGPL, and not to allow others to
  51  * use your version of this file under the terms of the MPL, indicate your
  52  * decision by deleting the provisions above and replace them with the notice
  53  * and other provisions required by the GPL or the LGPL. If you do not delete
  54  * the provisions above, a recipient may use your version of this file under
  55  * the terms of any one of the MPL, the GPL or the LGPL.
  56  *
  57  *********************************************************************** */
  58 /*
  59  * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
  60  * Use is subject to license terms.
  61  */
  62 
  63 #ifndef _MPI_PRIV_H
  64 #define _MPI_PRIV_H
  65 
  66 /* $Id: mpi-priv.h,v 1.20 2005/11/22 07:16:43 relyea%netscape.com Exp $ */
  67 
  68 #include "mpi.h"
  69 #ifndef _KERNEL
  70 #include <stdlib.h>
  71 #include <string.h>
  72 #include <ctype.h>
  73 #endif /* _KERNEL */
  74 
  75 #if MP_DEBUG
  76 #include <stdio.h>
  77 
  78 #define DIAG(T,V) {fprintf(stderr,T);mp_print(V,stderr);fputc('\n',stderr);}
  79 #else