ChangeLog-2003 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  1. 2003-12-12 Huang Chun <chunhuang73@hotmal.com>
  2. * intrinsics/string_intrinsics.c (string_index): Fix logics thinko.
  3. 2003-12-05 Melvin Hadasht <melvin.hadasht@free.fr>
  4. * io/transfer.c (data_transfer_init): Give a runtime error for list
  5. formatted reads and writes from/to files opened for unformatted IO.
  6. 2003-11-30 Paul Brook <paul@nowt.org>
  7. * runtime/memory.c (push_context): Remove.
  8. (pop_context): Remove.
  9. * libgfortran.h: Remove prototypes.
  10. 2003-11-27 Paul Brook <paul@nowt.org>
  11. * runtime/memory.c (deallocate): Nullify pointer after freeing.
  12. 2003-11-27 Paul Brook <paul@nowt.org>
  13. * intrinsics/string_intrinsics.c: Use new memory allocation interface.
  14. * libgfortran.h: Ditto.
  15. * m4/in_pack.m4: Ditto.
  16. * runtime/in_pack_generic.c: Ditto.
  17. * runtime/memory.c: Ditto.
  18. 2003-11-26 Richard Henderson <rth@redhat.com>
  19. * m4/exponent.m4, m4/fraction.m4: New.
  20. * m4/nearest.m4, m4/set_exponent.m4: New.
  21. * generated/*: Update.
  22. * Makefile.am: Add them.
  23. (AM_CFLAGS): New. Use -std=gnu99.
  24. * Makefile.in: Regenerate.
  25. 2003-11-08 Paul Brook <paul@nowt.org>
  26. PR fortran/12704
  27. * m4/maxloc0.m4: Use default value of 1. Handle zero sized arrays.
  28. * m4/maxloc1.m4: Ditto.
  29. * m4/minloc0.m4: Ditto.
  30. * m4/minloc1.m4: Ditto.
  31. * m4/ifunction.m4: Set return value for zero sized arrays.
  32. * m4/iforeach.m4: Ditto.
  33. * m4/all.m4, m4/any.m4, m4/count.m4, m4/maxloc1.m4, m4/minloc1.m4,
  34. m4/mxaval.m4, m4/minval.m4, m4/product.m4, m4/sum.m4: Ditto.
  35. * generated/*: Update.
  36. 2003-10-30 Toon Moene <toon@moene.indiv.nluug.nl>
  37. PR fortran/12702
  38. * io/list_read.c (eat_spaces): Treat tab as space.
  39. 2003-10-30 Lars Segerlund <Lars.Segerlund@comsys.se>
  40. * intrinsics/random.c: Add reference to paper containing algorithm.
  41. (random_seed): Extra error checking and proper handling of arrays.
  42. (arandom_r4, arandom_r8): Implement.
  43. 2003-10-29 Toon Moene <toon@moene.indiv.nluug.nl>
  44. PR fortran/12703
  45. * runtime/memory.c (allocate_size): Allow allocation
  46. of zero-sized objects.
  47. 2003-10-29 Toon Moene <toon@moene.indiv.nluug.nl>
  48. PR fortran/12701
  49. * open.c (new_unit): Open without a file name opens
  50. a file with name fort.<unit>.
  51. 2003-10-12 Feng Wang <wf_cs@yahoo.com>
  52. * intrinsics/cshift0.c: New file.
  53. * m4/cshift1.m4: New file
  54. * generated/cshift*.c: New files.
  55. * Makefile.am: Add them.
  56. * Makefile.in: Regenerate.
  57. 2003-10-12 XiaoQiang Zhang <zhangapache@yahoo.com>
  58. * io/list_read.c (read_character): Remove unwanted call to free_saved.
  59. 2003-10-11 Huang Chun <jiwang@mail.edu.cn>
  60. * intrinsics/string_intrinsics.c (string_trim): New function.
  61. (string_repeat): New function.
  62. 2003-10-11 Paul Brook <paul@nowt.org>
  63. * intrinsics/dprod_r8.f90: New file.
  64. * Makefile.am (gfor_specific_src): Add it.
  65. (gfor_built_specific_src): Rename from gfor_build_specific_c.
  66. Add new intrinsics.
  67. (gfor_specific2_src): Rename from gfor_built_specific2_c.
  68. Add new intrinsics.
  69. * Makefile.in: Regenerate.
  70. * generated/_aint_*.f90: New files.
  71. * generated/_anint*.f90: New files.
  72. * generated/_atan2*.f90: New files.
  73. * generated/_mod*.f90: New files.
  74. 2003-09-20 Kejia Zhao <kejia_zh@yahoo.com.cn>
  75. * intrinsics/selected_kind.f90: New file.
  76. * Makefile.am: Add it.
  77. * Makefile.in: regenerate.
  78. 2003-09-19 Lars Segerlund <Lars.Segerlund@comsys.se>
  79. Paul Brook <paul@nowt.org>
  80. * intrinsics/random.c: New file.
  81. * Makefile.am (gfor_hemper_src): Add it.
  82. (gfor_specific_c): Fix typo.
  83. 2003-09-19 Paul Brook <paul@nowt.org>
  84. * All: rename g95->gfc.
  85. 2003-09-18 XiaoQiang Zhang <zhangapache@yahoo.com>
  86. * io/write.c (output_float): Fix bug of FMT_E, Add comments.
  87. 2003-09-09 XiaoQiang Zhang <zhangapache@yahoo.com>
  88. * io/write.c (write_float): Dectection of positive infinite number,
  89. Not a Number(NaN) and negative infinite number.
  90. (ioutput_float): Bug fix for FMT_E and FMT_D processing to
  91. output a very_very small number ( < 0.1e-100 ).
  92. 2003-09-07 XiaoQiang Zhang <zhangapache@yahoo.com>
  93. * libgfortran.h (xtoa, itoa): Parameter modified.
  94. * io/io.h (namelist_info): Declaration to support namelist I/O
  95. (st_parameter): Add namelist related component
  96. (ionml, empty_internal_buffer, st_set_nml_var_int,
  97. st_set_nml_var_float, st_set_nml_var_char, st_set_nml_var_complex,
  98. st_set_nml_var_log): Declaration
  99. (set_integer, set_integer): Parameter changed
  100. * io/format.c (free_nodes): Fix annoying bug of lefting "deallocated"
  101. fnodes
  102. (parse_format_list): Fix bug about FMT_SLASH
  103. * io/list_read.c (push_char): Totally clear old saved_string, zeroize
  104. newly allocated saved_string
  105. (next_char): Add detection of End_Of_Line support
  106. (convert_integer): Now can process 64 bits interger
  107. (read_real): Bug fixed
  108. (init_at_eol, find_nml_node, match_namelist_name): Add new functions
  109. (match_namelist_name): New implemention
  110. * io/lock.c (ionml): New global variable
  111. (library_end): Free memory in ionml
  112. * io/open.c (st_open): Variable initializtion
  113. * io/read.c (max_value): 64 bits interger support
  114. (convert_precsion_real): New procedure to replace "strtod" with more
  115. features
  116. (read_f, read_radix): Input bug fix
  117. * io/transfer.c: (sf_seen_eor): New static variable
  118. (read_sf): Zeroize base buffer; fix bugs: single read statement can
  119. not get input in mutli line when read from stdin
  120. (formatted_transfer): Fix bug of FMT_O, FMT_B, FMT_Z for INTEGER type
  121. request
  122. (data_transfer_init): Clear internal buffer for Internel File I/O.
  123. Internal File now worked. Detect some error condition for namelist.
  124. Some minor bug fix
  125. (next_record_w): Internal file and Namelist I/O support.
  126. (st_set_nml_var, st_set_nml_var_float, st_set_nml_var_char,
  127. st_set_nml_var_complex, st_set_nml_var_log): Implemention.
  128. * io/unit.c (implicit_unit): Deletion
  129. (get_unit): Now cannot open a unit implicitly.
  130. * io/unix.c (mmap_alloc): Fix fatal error in calculating the length of
  131. mapped buffer.
  132. (mem_alloc_r_at): Internal file I/O support added
  133. (empty_internal_buffer): New function
  134. * io/write.c (extract_int): Support 64 bits interger processing
  135. (output_float): Varibale initialization
  136. (write_float): Infinite real number detection.
  137. (write_int): 64 bits integer I/O support
  138. (write_decimal): New function to output decimal number
  139. (otoa, btoa): Better implemention and 64 bits interger support
  140. (namelist_write): New function
  141. * runtime/error.c (itoa, xtoa): Better implemention and 64 bits
  142. interger support
  143. 2003-08-15 Arnaud Desitter <arnaud.desitter@geography.oxford.ac.uk>
  144. * libgfortran.h (os_error, runtime_error,internal_error, sys_exit,
  145. get_mem ): Add attribute.
  146. * intrinsics/spread_generic.c (__spread): Fix spelling.
  147. * io/inquire.c (inquire_via_filename): Add const.
  148. * io/io.h (sys_exit): Add attribute.
  149. * io/io.h (move_pos_offset): Add move_pos_offset.
  150. * io/io.h (compare_file_filename, inquire_sequential, inquire_direct,
  151. inquire_formatted, inquire_unformatted, inquire_read, inquire_write,
  152. inquire_readwrite, convert_real, write_a, write_b, write_d, write_e,
  153. write_en, write_es, write_f, write_i, write_l, write_o, write_x,
  154. write_z): Add const.
  155. * io/read.c (convert_real): Add const.
  156. * io/transfer.c (type_name): Add const.
  157. * io/unix.c (unpack_filename, compare_file_filename,inquire_sequential,
  158. inquire_direct, inquire_formatted, inquire_unformatted, inquire_access,
  159. inquire_read, inquire_write, inquire_readwrite): Add const.
  160. * io/write.c (output_float): Remove unused variable.
  161. * io/write.c (write_a, extract_int, extract_real, output_float,
  162. write_float, write_int, write_i, write_b, write_o, write_z, write_d,
  163. write_e, write_f, write_en, write_es, write_logical, write_integer,
  164. write_character, write_real, write_complex): Add const.
  165. * runtime/error.c (rtoa): Remove unused variable.
  166. * runtime/select.c (select_string): Add const.
  167. * runtime/stop.c (stop_string): Add const.
  168. 2003-08-10 Paul Brook <paul@nowt.org>
  169. * Makefile.am (gfor_helper_src): Add intrinsics/abort.c.
  170. (FFLAGS): Add -fno-underscoring.
  171. * Makefile.in: Regenerate.
  172. * intrinsics/abort.c: New file.
  173. 2003-08-10 Erik Schnetter <schnetter@uni-tuebingen.de>
  174. * fmain.c (main): Do not call init and cleanup; call set_args instead.
  175. * libgfortran.h (init, cleanup): Remove declarations.
  176. (set_args): Add declaration.
  177. * runtime/main.c (init, cleanup): Make them static, and give them
  178. the constructor and destructor attributes.
  179. (set_args): New function.
  180. 2003-08-10 Paul Brook <paul@nowt.org>
  181. * intrinsics/strinf_intrinsics.c (compare_string): Return value based
  182. on which string is longest.
  183. 2003-08-10 Paul Brook <paul@nowt.org>
  184. * Makefile.am (EXTRA_DIST): Remove old files.
  185. * Makefile.in: Regenerate.
  186. 2003-07-26 Paul Brook <paul@nowt.org>
  187. Rename library to libgfortran.
  188. * libgfortran.h: Change prefix to _libgfortran_.
  189. 2003-07-24 Paul Brook <paul@nowt.org>
  190. * configure.in: Don't pull in system libtool. Use toplevel
  191. auxiliary files.
  192. 2003-07-22 Paul Brook <paul@nowt.org>
  193. Regenerate all configury files.
  194. 2003-07-09 Chun Huang <compiler@sohu.com>
  195. * intrinsics/string_intrinsic.c (string_scan): New function.
  196. (string_verify): New function.
  197. 2003-06-25 Paul Brook <paul@nowt.org>
  198. * io/unix.c (mem_alloc_r_at, mem_alloc_w_at): Advance logical_offset.
  199. (mem_seek): Don't bother setting physical_offset.
  200. 2003-06-20 Paul Brook <paul@nowt.org>
  201. * libgfor.h (stop_numeric): Declare.
  202. * runtime/pause.c: New file.
  203. * Makefile.am: Add it.
  204. 2003-06-08 Paul Brook <paul@nowt.org>
  205. * m4/cexp.m4 (cabs): Use correct typed version.
  206. (csqrt): New function.
  207. 2003-06-07 Canqun Yang <canqun@yahoo.com.cn>
  208. Spotted by Benjamin and Tobias:
  209. * io/list_read.c: Add Separator '\t'.
  210. (parse_real, read_real): Accept real values starting with an optional
  211. sign follows a decimal point.
  212. 2003-06-06 Steven Bosscher <steven@gcc.gnu.org>
  213. * Makefile.am: Don't put cmath objects in subdir.
  214. * configure.in: Rename MATHOBJ to MATH_OBJ.
  215. 2003-06-02 Kejia Zhao <Kejia_zh@yahoo.com.cn>
  216. * intrinsics/associated.c: New file.
  217. * Makefile.am: Add it. Regenerate Makefile.in.
  218. * libgfor.h: Define g95_array_void, G95_DESCRIPTOR_DATA, and
  219. G95_DESCRIPTOR_DTYPE.
  220. 2003-06-01 Canqun Yang <canqun@yahoo.com.cn>
  221. * io/write.c (calcuate_exp): Rewrite it to avoid overflow.
  222. (calculate_G_format): Rewrite it to eliminate an infinte loop and set
  223. the scale_factor to 0 for F editing.
  224. 2003-05-11 Tobias Schlter <innenminister@gmx.de>
  225. * libgfor.h: Only include stdint.h if it exists.
  226. 2003-05-07 Paul Brook <paul@nowt.org>
  227. * libgfor.h: Use stdint.h types.
  228. * intrinsics/ishift.c: Ditto.
  229. * runtime/memory.c (malloc_t): Reorder fields for better alignment.
  230. 2003-05-05 Steven Bosscher <steven@gcc.gnu.org>
  231. * libgfor.h (offsetof): Define if nobody else does.
  232. * runtime/memory.c (HEADER_SIZE): Use it.
  233. 2003-05-01 Tobias Schlter <innenminister@gmx.de>
  234. * configure.in: Require autoconf 2.54.
  235. 2003-04-28 Tobias Schlter <innenminister@gmx.de>
  236. Paul Brook <paul@nowt.org>
  237. * intrinsics/reshape_generic.c: Copy the whole element, not just the
  238. first byte.
  239. * m4/transpose.m4: New file.
  240. * Makefile.am: Add them.
  241. Regenerate generated files.
  242. 2003-04-18 Steven Bosscher <steven@gcc.gnu.org>
  243. * io/format.c (parse_format_list): Allow 'X' without integer
  244. prefix. This is an extension. Interpretation is '1X'.
  245. 2003-04-18 Tobias Schlter <Tobias.Schlueter@physik.uni-muenchen.de>
  246. * io/format.c (parse_format_list): Allow '0P'.
  247. 2003-04-18 Steven Bosscher <steven@gcc.gnu.org>
  248. * Makefile.in: Re-regenerate for automake 1.7.3.
  249. 2003-04-18 Canqun Yang <canqun@yahoo.com.cn>
  250. Port implementation for CHARACTER SELECT from Andy's tree.
  251. * runtime/select.c: New file
  252. * Makefile.am: Add it.
  253. * Makefile.in: Regenerate.
  254. 2003-04-17 Xiaoqiang Zhang <zhangapache@yahoo.com>
  255. * io/transfer.c (formatted_transfer): Modified
  256. * io/unix.c (move_pos_offset): New Function.
  257. * io/format.c (parse_format_list): Modified.
  258. 2003-04-15 Xiaoqiang Zhang <zhangapache@yahoo.com>
  259. * io/write.c (write_float,write_real): New implemention of
  260. FMT_G and default float editing.
  261. (calculate_exp,calculate_G_format,output_float): New Function.
  262. (write_float,write_real,write_logical): Modified
  263. * libgfor.h (default_rtoa): Remove Declaration.
  264. * runtime/error.c (default_rtoa): Remove Function.
  265. 2003-04-15 Steven Bosscher <steven@gcc.gnu.org>
  266. Spotted by Yang:
  267. * io/write.c (extract_real): Add missing break statement.
  268. 2003-04-13 Steven Bosscher <steven@gcc.gnu.org>
  269. * cpu_time.c: Make sure we have a definition of HZ. Don't
  270. rely on CLOCKS_PER_SEC, it is always 1000000, on any system.
  271. 2003-04-13 Steven Bosscher <steven@gcc.gnu.org>
  272. Paul Brook <paul@nowt.org>
  273. * configure.in: Check for process time headers and GETTIMEOFDAY.
  274. * makefile.am: Add intrinsics/cpu_time.c.
  275. * acinclude.m4: New file.
  276. * intrinsics/cpu_time.c: New file.
  277. * m4/dotprodl.m4: Fix typo.
  278. Regenerate generated files.
  279. 2003-04-11 Xiaoqiang Zhang <zhangapache@yahoo.com>
  280. * io/write.c (extract_real): Ouput floating point value.
  281. (write_float): New Function.
  282. (write_e, write_f, write_en, write_es): Modified
  283. * io/transfer.c (formatted_transfer): Modified.
  284. * libgfor.h (default_rtoa): Declaration.
  285. (rtoa): Declaration.
  286. * runtime/error.c (default_rtoa): New Function.
  287. (rtoa): New Function.
  288. 2003-04-05 Paul Brook <paul@nowt.org>
  289. * intrinsics/spread_generic.c: New file.
  290. * Makefile.am: Add it. Regenerate Makefile.in.
  291. 2003-03-29 Paul Brook <paul@nowt.org>
  292. * intrinsics/pack_generic.c: New file.
  293. * intrinsics/unpack_generic.c: New file.
  294. * Makefile.am: Add them. Regenerate Makefile.in.
  295. 2003-03-25 Paul Brook <paul@nowt.org>
  296. * intrinsics/eoshift0.c: New file.
  297. * intrinsics/eoshift2.c: New file.
  298. * m4/eoshift1.m4: New file.
  299. * m4/eoshift3.m4: New file.
  300. * Makefile.am: Add them.
  301. * in_unpack_generic.c: Initialize src.
  302. Regenerate generated files.
  303. 2003-03-14 Paul Brook <paul@nowt.org>
  304. * m4/shape.m4: Work properly with array temporaries.
  305. * m4/in_pack.m4: Skip redundant checks for array temporaries.
  306. * runtime/in_pack_generic.c: Ditto.
  307. 2003-03-12 Paul Brook <paul@nowt.org>
  308. * m4/shape.m4: Work properly with noncontiguous arrays.
  309. 2003-03-08 Paul Brook <paul@nowt.org>
  310. * m4/in_pack.m4: Correctly handle zero sized and assumed size arrays.
  311. * runtime/in_pack_generic.c: Ditto.
  312. 2003-02-08 Paul Brook <paul@nowt.org>
  313. * intrinsics/reshape_generic.c: Use runtime_error to report errors.
  314. * io/close.c (st_close): Return void.
  315. * io/open.c (st_open): Return void.
  316. * libgfor.h (g95_array_char): Declare.
  317. (internal_malloc_size): Ditto.
  318. (internal_pack*, internal_unpack*): Ditto.
  319. * m4/in_pack.m4: Allocate storage if neccessary. Fix logic for packed
  320. arrays.
  321. * m4/in_unpack.m4: Include file fixes.
  322. * m4/reshape.m4: Increment the correct source pointer.
  323. * Makefile.am (maxloc): Fix typo.
  324. * runtime/in_pack_generic.c: Call optimized functions. Allocate
  325. storage if neccessary. Fix logic for packed arrays.
  326. * runtime/in_unpack_generic.c: Call optimized functions.
  327. * runtime/main.c: Use runtime_error to report errors.
  328. * memory.c (internal_malloc_size): Make non-static.
  329. 2003-02-02 Arnaud Desitter <arnaud.desitter@geography.oxford.ac.uk>
  330. * reshape_packed.c, lock.c: Add #include <string.h>.
  331. * libgfor.h, format.c, inquire.c, io.h, transfer.c, unix.c,
  332. environ.c, error.c, memory.c, string.c: Add const.
  333. * error.c (show_locus): Add void.
  334. 2003-02-21 Paul Brook <paul@nowt.org>
  335. * m4/in_pack.m4: Avoid returning const * parameter.
  336. * Makefile.am: Only regenerate files in maintainer mode.
  337. 2003-02-20 Paul Brook <paul@nowt.org>
  338. Add array repacking support functions.
  339. * m4/in_pack.m4, m4/in_unpack.m4: New files.
  340. * runtime/in_pack_generic.c, runtime/in_unpack_generic.c: New files.
  341. * Makefile.am: Build them. Regenerate configury files.
  342. * generated/: New directory for generated files (need to move
  343. everything else there).
  344. 2003-02-07 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
  345. * m4/cexp.m4: Fix typo.
  346. 2003-01-26 Paul Brook <paul@nowt.org>
  347. * intrinsics/: Add missing generated files.
  348. 2003-01-26 Paul Brook <paul@nowt.org>
  349. * Makefile.am: Put -I before the filename.
  350. 2003-01-24 Paul Brook <paul@nowt.org>
  351. * configure.in: Add AM_MAINTAINER_MODE.
  352. 2003-01-23 Paul Brook <paul@nowt.org>
  353. * configure.in, Makefile.am: Modify to work with unmodified autoconf
  354. and auotmake.
  355. Also regenerate other configury files.
  356. 2003-01-21 Paul Brook <paul@nowt.org>
  357. * io/read.c: Don't use stdint.h, it doesn't exist on cygwin.
  358. 2003-01-20 Steven Bosscher <s.bosscher@student.tudelft.nl>
  359. * io/read.c (read_f): Don't use alloca, but safe get_mem instead.
  360. Don't include "alloca.h".
  361. 2003-01-20 Steven Bosscher <s.bosscher@student.tudelft.nl>
  362. * intrinsics/string.c: Rename to intrinsics/string_intrinsics.c.
  363. * Makefile.am: Adjust file name.
  364. * Makefile.in: Regenerate.
  365. * gfortypes.h: Kill, include everything in...
  366. * libgfor.h: ...here. Include config.h
  367. * fmain.c, intrinsics/ishftc.c, intrinsic/reshape_generic.c,
  368. intrinsics/reshape_i4.c, intrinsics/reshape_i8.c,
  369. intrinsics/reshape_packed.c, intrinsics/size.c,
  370. m4/reshape.m4, runtime/main.c, runtime/memory.c: Use macro
  371. for prefix for all functions instead of hardcoded.
  372. 2003-01-19 Steven Bosscher <s.bosscher@student.tudelft.nl>
  373. * io/lock.c (library_end): Propagate library return
  374. code.
  375. 2003-01-19 Steven Bosscher <s.bosscher@student.tudelft.nl>
  376. Port fixes from Andy's tree:
  377. * io/read.c (read_decimal): Reverse sense of overflow
  378. comparison during integer reads.
  379. * io/format.c (revert): Fix comment.
  380. (next_format): Fix format revision.
  381. * io/unix.c: Fix and simplify mmap version of stream
  382. functions.
  383. 2003-01-11 Paul Brook <paul@nowt.org>
  384. * configure, Makefile.in: Regenerate.
  385. 2003-01-11 Paul Brook <paul@nowt.org>
  386. * runtime/stop.c: Rewrite.
  387. 2003-01-08 Paul Brook <paul@nowt.org>
  388. * configure, Makefile.in: Regenerate.
  389. 2003-01-05 Paul Brook <paul@nowt.org>
  390. * (*.m4) Move to m4/.
  391. * intrinsics/string.c (_gfor_string_index): New Function.
  392. Copyright (C) 2003 Free Software Foundation, Inc.
  393. Copying and distribution of this file, with or without modification,
  394. are permitted in any medium without royalty provided the copyright
  395. notice and this notice are preserved.