IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 22, 2009, 10:43:26 AM (17 years ago)
Author:
eugene
Message:

lots of very minor API mods to satisfy some pickier compilers (supply void to prototypes for argument-less functions)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/include/data.h

    r20936 r21153  
    3333} Book;
    3434
    35 void InitData ();
    36 void FreeData ();
     35void InitData (void);
     36void FreeData (void);
    3737
    3838/* in book.c */
    39 void InitBooks ();
     39void InitBooks (void);
    4040void InitBook (Book *book, char *name);
    4141void FreeBook (Book *book);
     
    4444Book *CreateBook (char *name);
    4545int DeleteBook (Book *book);
    46 void ListBooks ();
     46void ListBooks (void);
    4747
    4848/* in page.c */
     
    6161
    6262/* in queues.c */
    63 void InitQueues ();
    64 void ListQueues ();
     63void InitQueues (void);
     64void ListQueues (void);
    6565Queue *FindQueue (char *name);
    6666Queue *CreateQueue (char *name);
     
    151151int read_table_vectors (int argc, char **argv, char *extname);
    152152
    153 void *db_getConnection ();
     153void *db_getConnection (void);
    154154
    155155int bracket (double *list, int Nlist, int mode, double value);
    156156int ibracket (int *list, int Nlist, int mode, double value);
    157157
    158 void FreeKapa ();
    159 void FreeQueues ();
    160 void FreeBooks ();
     158void FreeKapa (void);
     159void FreeQueues (void);
     160void FreeBooks (void);
    161161
    162162# endif
Note: See TracChangeset for help on using the changeset viewer.