Changeset 2121


Ignore:
Timestamp:
Jul 11, 2008 12:56:07 AM (16 years ago)
Author:
bennylp
Message:

Fixed gcc function is not a prototype warnings

Location:
pjproject/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/guid.h

    r2039 r2121  
    1 /* $Id:$ */ 
     1/* $Id$ */ 
    22/*  
    33 * Copyright (C)2003-2008 Benny Prijono <benny@prijono.org> 
     
    6363 * Get #PJ_GUID_STRING_LENGTH constant. 
    6464 */ 
    65 PJ_DECL(unsigned) pj_GUID_STRING_LENGTH(); 
     65PJ_DECL(unsigned) pj_GUID_STRING_LENGTH(void); 
    6666 
    6767/** 
  • pjproject/trunk/pjlib/include/pj/pool.h

    r2039 r2121  
    623623 * Get #PJ_NO_MEMORY_EXCEPTION constant. 
    624624 */  
    625 PJ_DECL(int) pj_NO_MEMORY_EXCEPTION(); 
     625PJ_DECL(int) pj_NO_MEMORY_EXCEPTION(void); 
    626626 
    627627/** 
  • pjproject/trunk/pjsip/include/pjsip-simple/evsub.h

    r2039 r2121  
    215215 * SUBSCRIBE method constant. 
    216216 */ 
    217 PJ_DECL(const pjsip_method*) pjsip_get_subscribe_method(); 
     217PJ_DECL(const pjsip_method*) pjsip_get_subscribe_method(void); 
    218218 
    219219/** 
    220220 * NOTIFY method constant. 
    221221 */ 
    222 PJ_DECL(const pjsip_method*) pjsip_get_notify_method(); 
     222PJ_DECL(const pjsip_method*) pjsip_get_notify_method(void); 
    223223 
    224224 
  • pjproject/trunk/pjsip/include/pjsip-ua/sip_xfer.h

    r2039 r2121  
    6666 
    6767/** Get REFER method constant */ 
    68 PJ_DECL(const pjsip_method*) pjsip_get_refer_method(); 
     68PJ_DECL(const pjsip_method*) pjsip_get_refer_method(void); 
    6969 
    7070 
Note: See TracChangeset for help on using the changeset viewer.