X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fctf%2Falign.h;h=5adac7f3007306cb4d5774ce7c253f33e679b717;hp=ad4a0134fb7f45c0b28a659bac718da260185ec0;hb=ceb811dc38fe93065f7c1119b9509f9f29a45d76;hpb=6dc2ca620b58bbd67df61d8a5265ee4292f2dd37 diff --git a/include/ctf/align.h b/include/ctf/align.h index ad4a0134..5adac7f3 100644 --- a/include/ctf/align.h +++ b/include/ctf/align.h @@ -1,6 +1,26 @@ #ifndef _CTF_ALIGN_H #define _CTF_ALIGN_H +/* + * align.h - alignment header + * + * Copyright (c) 2010 Mathieu Desnoyers + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #include #define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a) - 1)