~ubuntu-branches/ubuntu/trusty/kmod/trusty

« back to all changes in this revision

Viewing changes to libkmod/libkmod-array.h

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2013-10-24 06:16:30 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20131024061630-o87ipf2zxqtpigls
Tags: 15-0ubuntu1
* New upstream release. (See Debian #716739)
* Drop patches included upstream: dot_kcmdline, bad_alias_assertion,
  blacklist_aliased.
* Drop check_builtin_kver, this would only apply to lucid and is otherwise
  unnecessary.
* Drop --disable-shared/--enable-static, this got dropped in this version
  and isn't necessary any more. /bin/kmod does not dynamically link to
  libkmod by default now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _LIBKMOD_ARRAY_H_
2
 
#define _LIBKMOD_ARRAY_H_
 
1
#pragma once
3
2
 
4
3
/*
5
4
 * Declaration of struct array is in header because we may want to embed the
19
18
void array_free_array(struct array *array);
20
19
void array_sort(struct array *array, int (*cmp)(const void *a, const void *b));
21
20
int array_remove_at(struct array *array, unsigned int pos);
22
 
 
23
 
#endif