Ignore:
Timestamp:
Feb 3, 2017, 2:02:34 PM (8 years ago)
Author:
Silvan Scherrer
Message:

cpio: update vendor to version 2.12

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified cpio/vendor/current/gnu/savedir.h

    r118 r1964  
    1 /* -*- buffer-read-only: t -*- vi: set ro: */
    2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
    31/* Save the list of files in a directory in a string.
    42
    5    Copyright (C) 1997, 1999, 2001, 2003, 2005, 2009-2010 Free Software
     3   Copyright (C) 1997, 1999, 2001, 2003, 2005, 2009-2015 Free Software
    64   Foundation, Inc.
    75
     
    2119/* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
    2220
    23 #if !defined SAVEDIR_H_
    24 # define SAVEDIR_H_
     21#ifndef _GL_SAVEDIR_H
     22#define _GL_SAVEDIR_H
    2523
    26 char *savedir (char const *dir);
    27 char *fdsavedir (int fd);
     24#include <dirent.h>
     25
     26enum savedir_option
     27  {
     28    SAVEDIR_SORT_NONE,
     29    SAVEDIR_SORT_NAME,
     30#if D_INO_IN_DIRENT
     31    SAVEDIR_SORT_INODE,
     32    SAVEDIR_SORT_FASTREAD = SAVEDIR_SORT_INODE
     33#else
     34    SAVEDIR_SORT_FASTREAD = SAVEDIR_SORT_NONE
     35#endif
     36  };
     37
     38char *streamsavedir (DIR *, enum savedir_option);
     39char *savedir (char const *, enum savedir_option);
    2840
    2941#endif
Note: See TracChangeset for help on using the changeset viewer.