1
1

* Prefix the preprocessor macro used to protect the file

* Include opal_stdint.h so that we have uin32_t

cmr=v1.7.5:ticket=trac:4298

This commit was SVN r30890.

The following Trac tickets were found above:
  Ticket 4298 --> https://svn.open-mpi.org/trac/ompi/ticket/4298
Этот коммит содержится в:
Jeff Squyres 2014-02-28 16:56:38 +00:00
родитель f8dbba78a7
Коммит 3f845edfdd

Просмотреть файл

@ -1,6 +1,7 @@
/* /*
* Copyright (c) 2014 Mellanox Technologies, Inc. * Copyright (c) 2014 Mellanox Technologies, Inc.
* All rights reserved. * All rights reserved.
* Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow
@ -8,12 +9,14 @@
* $HEADER$ * $HEADER$
*/ */
#ifndef ALFG_H #ifndef OPAL_ALFG_H
#define ALFG_H #define OPAL_ALFG_H
#include "opal_config.h" #include "opal_config.h"
#include "opal_stdint.h"
struct opal_rng_buff_t { struct opal_rng_buff_t {
uint32_t alfg[127]; uint32_t alfg[127];
int tap1; int tap1;
@ -26,4 +29,4 @@ int opal_srand(opal_rng_buff_t *buff, uint32_t seed);
uint32_t opal_rand(opal_rng_buff_t *buff); uint32_t opal_rand(opal_rng_buff_t *buff);
#endif /* ALFG_H */ #endif /* OPAL_ALFG_H */