dthelp: Change to ANSI function definitions
[oweals/cde.git] / cde / programs / dtmail / dtmail / XmTextEditor.C
index 7f549e9c08750c7174c9b37023669668b1966e7a..24e883216da5af6b3f4ea0cffc5dd5bd4081aa30 100644 (file)
@@ -1,3 +1,25 @@
+/*
+ * CDE - Common Desktop Environment
+ *
+ * Copyright (c) 1993-2012, The Open Group. All rights reserved.
+ *
+ * These libraries and programs are free software; you can
+ * redistribute them and/or modify them under the terms of the GNU
+ * Lesser General Public License as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option)
+ * any later version.
+ *
+ * These libraries and programs are distributed in the hope that
+ * they 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 these libraries and programs; if not, write
+ * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
+ * Floor, Boston, MA 02110-1301 USA
+ */
 /*
  *+SNOTICE
  *
@@ -625,15 +647,7 @@ XmTextEditor::loadFile(const char * path, const int pos)
                                (page_size - (info.st_size % page_size)));
     char * map;
 
-#if defined(__osf__)
-    // Need the (char *) for compile to work in ALL cases ... for the
-    // POSIX "mmap" is (void *).  Also, this version of mmap does NOT
-    // allow requested length to be greater than the file size ...
-    // in contradiction to the documentation (don't round up).
-    map = (char *) mmap(0, info.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
-#else
     map = (char *) mmap(0, map_size, PROT_READ, MAP_PRIVATE, fd, 0);
-#endif
 
     if (map == (char *)-1) {
        // We could not map it for some reason. Let's just read it into