dthelp: Change to ANSI function definitions
[oweals/cde.git] / cde / programs / dtmail / dtmail / AttachArea.C
index e03e2b6595c77793d612853d7d800bf227917ef9..c22e4011f3d573aa4fc8a0e502916dfe7c34fd39 100644 (file)
@@ -675,14 +675,7 @@ AttachArea::addAttachment(
                                    (page_size - (s.st_size % page_size)));
     char * map;
 
-#if defined(__osf__)
-    // 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, s.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