comparison src/lread.c @ 33570:32e84d2e9891

(Fload): Fix #ifdef for pcc.
author Dave Love <fx@gnu.org>
date Fri, 17 Nov 2000 16:10:03 +0000
parents ec5c714ae981
children 020c1a0abaf6
comparison
equal deleted inserted replaced
33569:d3d29c3a85c7 33570:32e84d2e9891
754 message_with_string ("File `%s' not compiled in Emacs", found, 1); 754 message_with_string ("File `%s' not compiled in Emacs", found, 1);
755 } 755 }
756 756
757 compiled = 1; 757 compiled = 1;
758 758
759 #ifdef DOS_NT 759 #ifdef DOS_NT
760 fmode = "rb"; 760 fmode = "rb";
761 #endif /* DOS_NT */ 761 #endif /* DOS_NT */
762 stat ((char *)XSTRING (found)->data, &s1); 762 stat ((char *)XSTRING (found)->data, &s1);
763 XSTRING (found)->data[STRING_BYTES (XSTRING (found)) - 1] = 0; 763 XSTRING (found)->data[STRING_BYTES (XSTRING (found)) - 1] = 0;
764 result = stat ((char *)XSTRING (found)->data, &s2); 764 result = stat ((char *)XSTRING (found)->data, &s2);
765 if (result >= 0 && (unsigned) s1.st_mtime < (unsigned) s2.st_mtime) 765 if (result >= 0 && (unsigned) s1.st_mtime < (unsigned) s2.st_mtime)
766 { 766 {