New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 1200 for trunk/AGRIF/LIB/UtilFile.c – NEMO

Ignore:
Timestamp:
2008-09-24T15:05:20+02:00 (16 years ago)
Author:
rblod
Message:

Adapt Agrif to the new SBC and correct several bugs for agrif (restart writing and reading), see ticket #133
Note : this fix does not work yet on NEC computerq (sxf90/360)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/AGRIF/LIB/UtilFile.c

    r774 r1200  
    6666 
    6767/******************************************************************************/ 
     68/*                           setposcurname                                       */ 
     69/******************************************************************************/ 
     70/* This subroutine is used to know the current position in the file in argument    */ 
     71/******************************************************************************/ 
     72/*                                                                            */ 
     73/*                      setposcur ---------> position in file                 */ 
     74/*                                                                            */ 
     75/******************************************************************************/ 
     76long int setposcurname(FILE *fileout) 
     77{ 
     78   fflush(fileout); 
     79   return ftell(fileout); 
     80} 
     81 
     82/******************************************************************************/ 
    6883/*                           setposcur                                        */ 
    6984/******************************************************************************/ 
Note: See TracChangeset for help on using the changeset viewer.