~ubuntu-branches/ubuntu/trusty/proll/trusty

« back to all changes in this revision

Viewing changes to src/swap.c

  • Committer: Bazaar Package Importer
  • Author(s): Guillem Jover
  • Date: 2011-06-08 04:35:59 UTC
  • Revision ID: james.westby@ubuntu.com-20110608043559-8ln88b583x0uqcox
Tags: 18-5
* Switch to debhelper compatibility level 7.
* Use dh_prep instead of “dh_clean -k”.
* Use $(filter ...) instead of $(findstring ...) to extract space separated
  options from DEB_BUILD_OPTIONS in debian/rules.
* Switch to source format “3.0 (quilt)”:
  - Remove quilt from Build-Depends.
  - Remove quilt.make include from debian/rules.
  - Remove patch and unpatch targets from debian/rules.
  - Remove now unneeded debian/README.source.
* Now using Standards-Version 3.9.2 (no changes needed).
* Remove leading ‘./’ from lintian overrides.
* Rename build target to build-indep, install to install-indep, and add
  an empty build-arch target.
* Use dpkg-buildflags to set CPPFLAGS, CFLAGS and LDFLAGS.
* Disable Sparc V9 specific unbuildable code.
* Add ${misc:Depends} to Depends field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Convert the lat7 font so that no conversion is needed at runtime.
 
2
#define ORIG
 
3
#include "rconsole.c"
 
4
 
 
5
#include <stdio.h>
 
6
 
 
7
int main()
 
8
{
 
9
    struct rfont p;
 
10
    int i;
 
11
 
 
12
    font_cons_7(&p);
 
13
 
 
14
    printf("   ");
 
15
    for (i = 0; i < LAT7_NCHARS*LAT7_HEIGHT; i++) {
 
16
        printf("0x%02x, ", p.body_[i]);
 
17
        if ((i % 12) == 11)
 
18
            printf("\n   ");
 
19
    }
 
20
    printf("\n");
 
21
}