Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2005-07-21 21:35:25 +0000
committerAlain Magloire2005-07-21 21:35:25 +0000
commitb77ccbf4ec77c24030ffc32cc50314a3d6e0b54b (patch)
treedab04b6b7f835efa1d75c1405713476ac8f21dd6
parent7abac74ad7a2c38d350d6a7b6af9130d41fb2672 (diff)
downloadorg.eclipse.cdt-b77ccbf4ec77c24030ffc32cc50314a3d6e0b54b.tar.gz
org.eclipse.cdt-b77ccbf4ec77c24030ffc32cc50314a3d6e0b54b.tar.xz
org.eclipse.cdt-b77ccbf4ec77c24030ffc32cc50314a3d6e0b54b.zip
Fix headers.
-rw-r--r--core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/macho/MachO.java16
-rw-r--r--core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/macho/MachOHelper.java17
2 files changed, 24 insertions, 9 deletions
diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/macho/MachO.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/macho/MachO.java
index f5162242d61..c9dc4a5cecf 100644
--- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/macho/MachO.java
+++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/macho/MachO.java
@@ -1,9 +1,17 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2005 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * QNX Software Systems - Initial API and implementation
+ * Craig Watson.
+ *******************************************************************************/
+
package org.eclipse.cdt.utils.macho;
-/*
- * (c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
- */
import java.io.IOException;
import java.util.ArrayList;
diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/macho/MachOHelper.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/macho/MachOHelper.java
index f2258eac01b..b2b2fa327b7 100644
--- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/macho/MachOHelper.java
+++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/macho/MachOHelper.java
@@ -1,9 +1,16 @@
-package org.eclipse.cdt.utils.macho;
+/*******************************************************************************
+ * Copyright (c) 2000, 2005 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * QNX Software Systems - Initial API and implementation
+ * Craig Watson
+ *******************************************************************************/
-/*
- * (c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
- */
+package org.eclipse.cdt.utils.macho;
import java.io.IOException;
import java.util.Arrays;

Back to the top