Edit

kc3-lang/gnulib/lib/filemode.h

Branch :

  • Show log

    Commit

  • Author : Jim Meyering
    Date : 1999-04-26 13:13:36
    Hash : 11a9ce21
    Message : <config.h>, <sys/types.h>: Include for mode_t. (mode_string): Now takes mode_t.

  • lib/filemode.h
  • #ifndef FILEMODE_H_
    
    # if HAVE_CONFIG_H
    #  include <config.h>
    # endif
    
    # include <sys/types.h>
    
    # ifndef PARAMS
    #  if defined PROTOTYPES || (defined __STDC__ && __STDC__)
    #   define PARAMS(Args) Args
    #  else
    #   define PARAMS(Args) ()
    #  endif
    # endif
    
    void mode_string PARAMS ((mode_t mode, char *str));
    
    #endif