Path: ...!news.roellig-ltd.de!open-news-network.org!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Thomas Koenig Newsgroups: comp.lang.fortran Subject: Re: Is there a way in Fortran to designate an integer value as integer*8 ? Date: Mon, 21 Oct 2024 05:41:22 -0000 (UTC) Organization: A noiseless patient Spider Lines: 24 Message-ID: References: Injection-Date: Mon, 21 Oct 2024 07:41:23 +0200 (CEST) Injection-Info: dont-email.me; posting-host="6d4bb8a68c0db87b2306abe682a551c2"; logging-data="881143"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/eW9StTzb3pWCBdUGDiycagmkpxNxbmww=" User-Agent: slrn/1.0.3 (Linux) Cancel-Lock: sha1:RBBy8oEIw+Znab4hQoSL8rSECvM= Bytes: 1874 Lynn McGuire schrieb: > I include all of my common blocks as files to stop typos. That is surely an old technique, but only really works to 100% if you adhere to some additional style constraints in your code. Consider foo.f: DIMENSION A(10) INCLUDE "common.inc" bar.f: INCLUDE "common.inc" (without the DIMENSION) common.inc: COMMON /COMMON/ A