aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/libnl-tiny/src/include/netlink/utils.h
diff options
context:
space:
mode:
authorJonas Gorski <jogo@openwrt.org>2013-07-18 20:40:10 +0000
committerJonas Gorski <jogo@openwrt.org>2013-07-18 20:40:10 +0000
commitf3755ec53c47c42f719362e31ffd10ba351f7ad1 (patch)
tree1feeecf504a7ef5490e4d5544393a9679abf97ed /package/libs/libnl-tiny/src/include/netlink/utils.h
parentd2cbc1b6cff395cf027387df2b020cf8c9cfec5c (diff)
downloadupstream-f3755ec53c47c42f719362e31ffd10ba351f7ad1.tar.gz
upstream-f3755ec53c47c42f719362e31ffd10ba351f7ad1.tar.bz2
upstream-f3755ec53c47c42f719362e31ffd10ba351f7ad1.zip
kernel: kmod-e1000e depends on pip for 3.8+
Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 37418
Diffstat (limited to 'package/libs/libnl-tiny/src/include/netlink/utils.h')
0 files changed, 0 insertions, 0 deletions
*/ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
--  GHDL Run Time (GRT) -  Well known RTIs.
--  Copyright (C) 2002 - 2014 Tristan Gingold
--
--  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 of the License, 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 program.  If not, see <gnu.org/licenses>.
--
--  As a special exception, if other files instantiate generics from this
--  unit, or you link this unit with other files to produce an executable,
--  this unit does not by itself cause the resulting executable to be
--  covered by the GNU General Public License. This exception does not
--  however invalidate any other reasons why the executable file might be
--  covered by the GNU Public License.
with System; use System;
with Grt.Rtis; use Grt.Rtis;

--  Set RTI_ptr defined in grt.rtis_types.

package Grt.Rtis_Binding is
   pragma Preelaborate (Grt.Rtis_Binding);

   --  Define and set bit and boolean RTIs.
   Std_Standard_Bit_RTI : aliased Ghdl_Rti_Common;

   Std_Standard_Boolean_RTI : aliased Ghdl_Rti_Common;

   pragma Import (C, Std_Standard_Bit_RTI,
                  "std__standard__bit__RTI");

   pragma Import (C, Std_Standard_Boolean_RTI,
                  "std__standard__boolean__RTI");

   Std_Standard_Bit_RTI_Ptr : Ghdl_Rti_Access
     := Std_Standard_Bit_RTI'Access;

   Std_Standard_Boolean_RTI_Ptr : Ghdl_Rti_Access
     := Std_Standard_Boolean_RTI'Access;

   pragma Export (C, Std_Standard_Bit_RTI_Ptr,
                  "std__standard__bit__RTI_ptr");

   pragma Export (C, Std_Standard_Boolean_RTI_Ptr,
                  "std__standard__boolean__RTI_ptr");


   --  Define and set Resolved_Resolv_Ptr.
   procedure Ieee_Std_Logic_1164_Resolved_RESOLV;
   pragma Import (C, Ieee_Std_Logic_1164_Resolved_RESOLV,
                  "ieee__std_logic_1164__resolved_RESOLV");

   Ieee_Std_Logic_1164_Resolved_Resolv_Ptr : Address :=
     Ieee_Std_Logic_1164_Resolved_RESOLV'Address;
   pragma Export (C, Ieee_Std_Logic_1164_Resolved_Resolv_Ptr,
                  "ieee__std_logic_1164__resolved_RESOLV_ptr");

end Grt.Rtis_Binding;