* Removed lots of deprecated stuff.
[bpt/guile.git] / libguile / random.h
index 0901c59..1de0380 100644 (file)
@@ -1,19 +1,20 @@
 /* classes: h_files */
 
-#ifndef RANDOMH
-#define RANDOMH
-/*     Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
- * 
+#ifndef SCM_RANDOM_H
+#define SCM_RANDOM_H
+
+/* Copyright (C) 1999,2000,2001 Free Software Foundation, Inc.
+ *
  * 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 software; see the file COPYING.  If not, write to
  * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
@@ -85,12 +86,6 @@ typedef struct scm_t_i_rstate {
   unsigned long c;
 } scm_t_i_rstate;
 
-#if (SCM_DEBUG_DEPRECATED == 0)
-# define scm_rstate scm_t_rstate
-# define scm_rng scm_t_rng
-# define scm_i_rstate scm_t_i_rstate
-#endif
-
 extern unsigned long scm_i_uniform32 (scm_t_i_rstate *);
 extern void scm_i_init_rstate (scm_t_i_rstate *, char *seed, int n);
 extern scm_t_i_rstate *scm_i_copy_rstate (scm_t_i_rstate *);
@@ -130,7 +125,7 @@ extern SCM scm_random_normal_vector_x (SCM v, SCM state);
 extern SCM scm_random_exp (SCM state);
 extern void scm_init_random (void);
 
-#endif  /* RANDOMH */
+#endif  /* SCM_RANDOM_H */
 
 /*
   Local Variables: