Changeset c78c032


Ignore:
Timestamp:
2007-10-12T12:11:32Z (17 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
f618a4a
Parents:
d444c09
Message:

Add GCC attributes.

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • conf.h

    rd444c09 rc78c032  
    5151} conf_t;
    5252
    53 conf_t *conf_load( int argc, char *argv[] );
     53G_GNUC_MALLOC conf_t *conf_load( int argc, char *argv[] );
    5454void conf_loaddefaults( irc_t *irc );
    5555
  • crypting.h

    rd444c09 rc78c032  
    2525
    2626int checkpass (const char *password, const char *md5sum);
    27 char *hashpass (const char *password);
    28 char *obfucrypt (char *line, const char *password);
    29 char *deobfucrypt (char *line, const char *password);
     27G_GNUC_MALLOC char *hashpass (const char *password);
     28G_GNUC_MALLOC char *obfucrypt (char *line, const char *password);
     29G_GNUC_MALLOC char *deobfucrypt (char *line, const char *password);
  • help.h

    rd444c09 rc78c032  
    4343} help_t;
    4444
    45 help_t *help_init( help_t **help, const char *helpfile );
     45G_GNUC_MALLOC help_t *help_init( help_t **help, const char *helpfile );
    4646char *help_get( help_t **help, char *string );
    4747
  • storage.h

    rd444c09 rc78c032  
    6262
    6363void register_storage_backend(storage_t *);
    64 GList *storage_init(const char *primary, char **migrate);
     64G_GNUC_MALLOC GList *storage_init(const char *primary, char **migrate);
    6565
    6666#endif /* __STORAGE_H__ */
Note: See TracChangeset for help on using the changeset viewer.