From: Matthias Braun Date: Mon, 16 Jul 2012 14:30:31 +0000 (+0200) Subject: replace gnu extension with C99 X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=a6662435f5245da241e172ca03643c8223e0d8a1;p=libfirm replace gnu extension with C99 --- diff --git a/ir/be/beemitter_binary.h b/ir/be/beemitter_binary.h index 2797532a6..09b604501 100644 --- a/ir/be/beemitter_binary.h +++ b/ir/be/beemitter_binary.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2o008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -58,7 +58,7 @@ struct code_fragment_t { unsigned short jumpsize_min; unsigned short jumpsize_max; - unsigned char data[0]; /**< data starts here */ + unsigned char data[]; /**< data starts here */ }; typedef struct binary_emiter_interface_t binary_emiter_interface_t;