summaryrefslogtreecommitdiff
path: root/epan/dwarf.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-10-24 12:41:27 +0000
committerEvan Huus <eapache@gmail.com>2013-10-24 12:41:27 +0000
commit207cedd928803ada0b8bce5b67e364e3433a1fda (patch)
treed5e14ffb355d0f350b4a234053c369dfdd796977 /epan/dwarf.h
parent9188e541084a74ffd2959b914b925854c0633330 (diff)
downloadwireshark-207cedd928803ada0b8bce5b67e364e3433a1fda.tar.gz
From Michal Labedzki via
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8818 Add correct license headers, $Id$ fields and modelines to the common dwarf files. svn path=/trunk/; revision=52813
Diffstat (limited to 'epan/dwarf.h')
-rw-r--r--epan/dwarf.h39
1 files changed, 38 insertions, 1 deletions
diff --git a/epan/dwarf.h b/epan/dwarf.h
index c8ecb5f54a..fdec069b5f 100644
--- a/epan/dwarf.h
+++ b/epan/dwarf.h
@@ -1,3 +1,27 @@
+/* dwarf.h
+ * Common DWARF parts
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * 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, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
#ifndef __DWARF_H__
#define __DWARF_H__
@@ -6,4 +30,17 @@
gint dissect_uleb128(tvbuff_t *tvb, gint offset, guint64 *value);
gint dissect_leb128(tvbuff_t *tvb, gint offset, gint64 *value);
-#endif /* __DWARF_H__ */ \ No newline at end of file
+#endif /* __DWARF_H__ */
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */