"Fossies" - the Fresh Open Source Software Archive

Member "deheader-1.10/test/umask.c" (30 Jan 2023, 200 Bytes) of package /linux/privat/deheader-1.10.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 /*
    2  * Items: umask(
    3  * Standardized-By: SuS
    4  * Detected-by: gcc-4.4.3 + Linux
    5  * Not-detected-by: BSD
    6  */
    7 
    8 #include <sys/stat.h>
    9 #include <sys/types.h>
   10 
   11 main(int arg, char **argv)
   12 {
   13     umask(777);
   14 }