Changed all the licence notices in all the files.
[pspp-builds.git] / src / bitvector.h
index 6c3a878b16cebfad3a8d5d213adf1ae572dc8057..70112506b30c9e23cbff571cc49f674cde9355f1 100644 (file)
@@ -14,8 +14,8 @@
 
    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., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA. */
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA. */
 
 #if !bitvector_h
 #define bitvector_h 1
@@ -39,7 +39,6 @@
        (((unsigned char *) X)[(Y) / CHAR_BIT] & (1 << ((Y) % CHAR_BIT)))
 
 /* Returns 2**X, 0 <= X < 32. */
-#define BIT_INDEX(X)                           \
-       (1ul << (X))
+#define BIT_INDEX(X) (1ul << (X))
 
 #endif /* bitvector.h */