~ubuntu-branches/ubuntu/saucy/cdebootstrap/saucy

« back to all changes in this revision

Viewing changes to include/target.h

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2008-05-05 11:47:32 UTC
  • Revision ID: james.westby@ubuntu.com-20080505114732-y8wv2nswph52qlwe
Tags: 0.5.1ubuntu1
* Merge from Debian unstable (Fix LP: #223442).
  Remaining Ubuntu changes:
  - Set NO_PKG_MANGLE while building nested package
  - Update maintainer field in debian/control
* config/suites:
  - Add Intrepid to known distributions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * target.h
 
3
 *
 
4
 * Copyright (C) 2007 Bastian Blank <waldi@debian.org>
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
 *
 
20
 * $LastChangedBy: bastian $
 
21
 * $LastChangedDate: 2008-02-25 01:30:05 +0100 (Mo, 25 Feb 2008) $
 
22
 * $LastChangedRevision: 1522 $
 
23
 */
 
24
 
 
25
#ifndef TARGET_H
 
26
#define TARGET_H
 
27
 
 
28
extern const char *target_root;
 
29
 
 
30
void target_create_dir (const char *dir);
 
31
void target_create_file (const char *file);
 
32
 
 
33
#endif