~ubuntu-branches/ubuntu/vivid/gzip/vivid

« back to all changes in this revision

Viewing changes to amiga/utime.h

  • Committer: Steve Langasek
  • Date: 2012-06-29 02:07:40 UTC
  • mfrom: (4.1.9 sid)
  • Revision ID: steve.langasek@canonical.com-20120629020740-qqikrblzana08v2y
Merge version 1.5-1.1 from Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _UTIME_H
2
 
#define _UTIME_H 1
3
 
 
4
 
#ifndef _TIME_H
5
 
#include <time.h>
6
 
#endif
7
 
 
8
 
struct utimbuf {
9
 
  time_t actime;
10
 
  time_t modtime;
11
 
};
12
 
 
13
 
extern int utime (char *path, struct utimbuf *times);
14
 
 
15
 
#endif