]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - monop/deck.h
Add NetBSD slogans for fortune database.
[bsdgames-darwin.git] / monop / deck.h
index 507b14c48cac56db6e724323e6de86df45746160..947b58cc44ed3e7621c0cb6069301c14187764e5 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: deck.h,v 1.5 1999/08/21 10:40:03 simonb Exp $  */
+
 /*
 /*
- * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- *     @(#)deck.h      5.3 (Berkeley) 6/1/90
+ *     @(#)deck.h      8.1 (Berkeley) 5/31/93
  */
 
  */
 
-# define       bool    char
+#include <sys/types.h>
+
+#define        bool    char
 
 
-# define       CC_D    deck[0]
-# define       CH_D    deck[1]
+#define        CC_D    deck[0]
+#define        CH_D    deck[1]
 
 struct dk_st {                 /* deck description structure           */
        int     num_cards;              /* number of cards in deck      */
        int     last_card;              /* number of last card picked   */
        bool    gojf_used;              /* set if gojf card out of deck */
 
 struct dk_st {                 /* deck description structure           */
        int     num_cards;              /* number of cards in deck      */
        int     last_card;              /* number of last card picked   */
        bool    gojf_used;              /* set if gojf card out of deck */
-       long    *offsets;               /* offests for start of cards   */
+       off_t   *offsets;               /* offsets for start of cards   */
 };
 
 typedef struct dk_st   DECK;
 };
 
 typedef struct dk_st   DECK;